/* ============================================
   MODERN PROFESSIONAL CSS WITH HOVER EFFECTS
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --accent: #c79b2a;
  --accent-dark: #b07f1e;
  --accent-light: #e8c85a;
  --accent-glow: rgba(199, 155, 42, 0.3);
  --muted: #888888;
  --card: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #999999;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --nav-height: 80px;
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(199, 155, 42, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(199, 155, 42, 0.03) 0px, transparent 50%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(199, 155, 42, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header:hover {
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--transition);
}

.brand:hover {
  transform: translateX(2px);
}

.logo-sim {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(199, 155, 42, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.logo-sim::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: var(--transition-slow);
  opacity: 0;
}

.logo-sim:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(199, 155, 42, 0.4);
}

.logo-sim:hover::before {
  opacity: 1;
  animation: shine 0.6s ease;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.brand > div > div:first-child {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  transition: var(--transition);
}

.brand > div > div:last-child {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  transition: var(--transition);
}

.contact-btn {
  padding: 12px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f1724, #1e293b);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(15, 23, 36, 0.2);
}

.contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 36, 0.3);
}

.contact-btn:hover::before {
  left: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  max-width: 1400px;
  margin: 60px auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  align-items: center;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left {
  animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow {
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding: 6px 16px;
  background: rgba(199, 155, 42, 0.1);
  border-radius: 20px;
  transition: var(--transition);
}

.eyebrow:hover {
  background: rgba(199, 155, 42, 0.2);
  transform: scale(1.05);
}

h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
  text-shadow: 0 0 30px rgba(199, 155, 42, 0.2);
}

.hero-left p {
  color: var(--text-secondary);
  max-width: 85%;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 28px;
  border-left: 5px solid var(--accent);
  border: 1px solid rgba(199, 155, 42, 0.2);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(199, 155, 42, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 40px var(--accent-glow);
  border-left-width: 6px;
  background: var(--bg-card-hover);
  border-color: var(--accent);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  margin-bottom: 6px;
}

.contact-company {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-divider {
  margin: 20px 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 155, 42, 0.3), transparent);
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info strong {
  color: var(--text-primary);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.contact-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent-dark);
  transform: translateX(4px);
}

.contact-link:hover::after {
  width: 100%;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-top: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(199, 155, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-wa::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(199, 155, 42, 0.4);
}

.btn-wa:hover::before {
  width: 300px;
  height: 300px;
}

.btn-wa span {
  font-size: 18px;
  transition: var(--transition);
}

.btn-wa:hover span {
  transform: scale(1.2) rotate(10deg);
}

.hero-right {
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.illustration {
  width: 100%;
  max-width: 520px;
  border-radius: var(--border-radius);
  background: var(--bg-card);
  padding: 0;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(199, 155, 42, 0.2);
}

.illustration::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(199, 155, 42, 0.1), transparent);
  transition: var(--transition-slow);
}

.illustration:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-xl), 0 0 40px var(--accent-glow);
  border-color: var(--accent);
}

.illustration:hover::before {
  top: -30%;
  right: -30%;
}

.illustration img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: block;
}

.illustration:hover img {
  transform: scale(1.05);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
  padding: 80px 5%;
  max-width: 1400px;
  margin: auto;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.services h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 900;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  width: 100%;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 2px;
}

.service-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(199, 155, 42, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 30px var(--accent-glow);
  background: var(--bg-card-hover);
  border-color: rgba(199, 155, 42, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
  transition: var(--transition);
  background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card:hover h3 {
  color: var(--accent-dark);
}

.service-card > p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.service-card > p:last-of-type {
  margin-bottom: 0;
}

/* ============================================
   PROPERTY CARDS
   ============================================ */

.property-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.property-item {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(199, 155, 42, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  contain: layout style paint;
}

.property-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(199, 155, 42, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.property-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 30px var(--accent-glow);
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.property-item:hover::before {
  opacity: 1;
}

.property-badge {
  position: absolute;
  top: 16px;
  right: 0px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(199, 155, 42, 0.4), 0 0 20px rgba(199, 155, 42, 0.2);
  transition: var(--transition);
  max-width: calc(100% - 80px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: top right;
  pointer-events: none;
  contain: layout style paint;
  box-sizing: border-box;
}


@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.6);
  }
}

.property-badge.rental-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.property-item:hover .property-badge {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(199, 155, 42, 0.5), 0 0 30px rgba(199, 155, 42, 0.3);
}

.property-item > * {
  position: relative;
  z-index: 1;
}

.property-item h4 {
  padding: 20px 20px 8px;
  padding-top: 50px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.4;
  transition: var(--transition);
}

.property-item:hover h4 {
  color: var(--accent-dark);
}

.property-location {
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  line-height: 1.5;
}

.property-item:hover .property-location {
  color: var(--text-secondary);
}

.price {
  font-size: 24px;
  font-weight: 800;
  margin: 12px 20px;
  color: #22c55e;
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
  position: relative;
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.property-item:hover .price {
  transform: scale(1.05);
}

.desc {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  transition: var(--transition);
}

.property-item:hover .desc {
  color: var(--text-primary);
}

.btn-detail {
  margin: 0 20px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #0f1724, #1e293b);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 36, 0.2);
}

.btn-detail::before {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.btn-detail::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn-detail:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(15, 23, 36, 0.3);
  padding-right: 36px;
}

.btn-detail:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.btn-detail:hover::after {
  left: 100%;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left p {
    max-width: 100%;
  }

  .contact-card {
    margin: 0 auto;
  }

  h1 {
    font-size: 48px;
  }

  .services h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 70px;
  }

  .logo-sim {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .brand > div > div:first-child {
    font-size: 14px;
  }

  .brand > div > div:last-child {
    font-size: 10px;
  }

  .contact-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .hero {
    margin: 30px auto;
    padding: 20px;
  }

  h1 {
    font-size: 36px;
  }

  .eyebrow {
    font-size: 12px;
    padding: 4px 12px;
  }

  .hero-left p {
    font-size: 16px;
  }

  .contact-card {
    padding: 24px;
  }

  .services {
    padding: 60px 20px;
  }

  .services h2 {
    font-size: 32px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .service-card h3 {
    font-size: 26px;
  }

  .property-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .property-item h4 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .services h2 {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .property-item {
    animation: fadeInUp 0.6s ease backwards;
  }

  .property-item:nth-child(1) { animation-delay: 0.1s; }
  .property-item:nth-child(2) { animation-delay: 0.2s; }
  .property-item:nth-child(3) { animation-delay: 0.3s; }
  .property-item:nth-child(4) { animation-delay: 0.4s; }
  .property-item:nth-child(5) { animation-delay: 0.5s; }
  .property-item:nth-child(6) { animation-delay: 0.6s; }
  .property-item:nth-child(7) { animation-delay: 0.7s; }
  .property-item:nth-child(8) { animation-delay: 0.8s; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.rental {
  border-left: 4px solid #3b82f6;
}

.rental:hover {
  border-left-color: #60a5fa;
  box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Smooth transitions for all interactive elements */
a, button, .property-item, .service-card, .contact-card {
  -webkit-tap-highlight-color: transparent;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(199, 155, 42, 0.2);
  padding: 40px 20px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0 20px;
  transition: var(--transition);
}

.footer-text::before,
.footer-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: var(--transition);
}

.footer-text::before {
  left: -80px;
}

.footer-text::after {
  right: -80px;
}

.footer-text:hover {
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(199, 155, 42, 0.3);
}

.footer-text:hover::before,
.footer-text:hover::after {
  width: 80px;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px;
    margin-top: 60px;
  }

  .footer-text {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .footer-text::before,
  .footer-text::after {
    width: 30px;
  }

  .footer-text::before {
    left: -50px;
  }

  .footer-text::after {
    right: -50px;
  }
}

@media (max-width: 480px) {
  .footer-text {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 10px;
  }

  .footer-text::before,
  .footer-text::after {
    display: none;
  }
}
