:root {
  --primary: #c29f64; /* Elegant gold/bronze */
  --primary-hover: #a8874f;
  --bg: #0a0a0a; /* Deep dark background */
  --bg-lighter: #151515;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --glass-bg: rgba(21, 21, 21, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --border: #2a2a2a;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 500; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.text-center { text-align: center; }

/* Glassmorphism utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Hover effects */
.hover-grow { transition: var(--transition); }
.hover-grow:hover { transform: scale(1.02); }
.hover-glow { transition: var(--transition); }
.hover-glow:hover { box-shadow: 0 0 20px rgba(194, 159, 100, 0.15); border-color: var(--primary); }

/* Typography */
h1 { font-size: clamp(3rem, 5vw, 5rem); }
h1 span { color: var(--primary); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; font-weight: 500; }

.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(194, 159, 100, 0.2); }
.btn-secondary { background: rgba(255, 255, 255, 0.1); color: var(--text); backdrop-filter: blur(10px); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #000; }
.large { padding: 1rem 2.5rem; font-size: 1.1rem; }
.small { padding: 0.5rem 1rem; font-size: 0.9rem; }
.full-width { width: 100%; }

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; gap: 1rem; font-weight: 600; font-size: 1.2rem; }
.logo img { height: 40px; border-radius: 4px; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-muted); transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--primary); }
.nav-links .btn-primary { color: #000; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text); transition: 0.3s; }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.9) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 2rem; }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin: 1.5rem 0 3rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; }

/* Scroll indicator */
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); }
.mouse { width: 30px; height: 50px; border: 2px solid var(--text-muted); border-radius: 20px; position: relative; }
.mouse::before { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--text); border-radius: 2px; animation: scroll 2s infinite; }
@keyframes scroll { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }

/* Sections */
.section { padding: 6rem 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.features { margin-top: 2rem; }
.features li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; color: var(--text-muted); }
.features li span { color: var(--primary); }
.about-images { position: relative; }
.img-main { width: 80%; border-radius: 12px; cursor: pointer; transition: var(--transition); }
.img-main:hover { transform: scale(1.02); }
.img-secondary { position: absolute; width: 50%; bottom: -10%; right: 0; border-radius: 12px; border: 4px solid var(--bg); cursor: pointer; transition: var(--transition); }
.img-secondary:hover { transform: scale(1.05); }

/* Swiper Gallery */
.gallery { padding: 2rem 0; overflow: hidden; background: var(--bg-lighter); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.swiper { width: 100%; padding: 2rem 0 4rem 0 !important; }
.swiper-slide { height: auto; text-align: center; display: flex; justify-content: center; align-items: center; }
.swiper-slide img { width: 100%; height: 350px; border-radius: 16px; object-fit: cover; transition: var(--transition); cursor: pointer; }
.swiper-slide img:hover { transform: scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; }

/* Units */
.units-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.unit-card { background: var(--bg-lighter); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.unit-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.unit-img { position: relative; height: 250px; overflow: hidden; }
.unit-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.unit-img:hover img { transform: scale(1.1); }
.status { position: absolute; top: 1rem; right: 1rem; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.status.available { background: rgba(34, 197, 94, 0.2); color: #4ade80; backdrop-filter: blur(4px); }
.status.reserved { background: rgba(239, 68, 68, 0.2); color: #f87171; backdrop-filter: blur(4px); }
.unit-content { padding: 2rem; }
.unit-content h3 { margin-bottom: 1.5rem; }
.unit-details { margin-bottom: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.unit-details div { font-size: 0.9rem; color: var(--text-muted); }
.unit-details span { display: block; color: var(--text); font-weight: 500; }

/* Standard */
.standard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.doc-links { display: flex; flex-direction: column; gap: 1rem; }
.doc-btn { background: var(--bg-lighter); border: 1px solid var(--border); color: var(--text); justify-content: flex-start; gap: 1rem; }
.doc-btn:hover { border-color: var(--primary); background: var(--glass-bg); }
.doc-btn svg { width: 24px; height: 24px; stroke: var(--primary); }
.standard-image { height: 100%; min-height: 400px; padding: 1rem; cursor: pointer; transition: var(--transition); }
.standard-image:hover { border-color: var(--primary); }
.standard-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

/* Location */
.location-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; overflow: hidden; }
.location-info { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.location-info h3 { color: var(--primary); margin-bottom: 1rem; }
.location-info p { color: var(--text-muted); margin-bottom: 2rem; }
.distances li { margin-bottom: 0.5rem; display: flex; justify-content: space-between; border-bottom: 1px solid var(--glass-border); padding-bottom: 0.5rem; }
.distances span { font-weight: 500; }
.location-map { min-height: 400px; }

/* Documents */
.docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.doc-card { padding: 3rem; text-align: center; }
.doc-icon { font-size: 3rem; margin-bottom: 1rem; }
.doc-card h3 { margin-bottom: 1rem; }
.doc-card p { color: var(--text-muted); margin-bottom: 2rem; }
.doc-list { text-align: left; margin-bottom: 2rem; }
.doc-list li { margin-bottom: 0.5rem; color: var(--text-muted); position: relative; padding-left: 1.5rem; }
.doc-list li::before { content: '•'; color: var(--primary); position: absolute; left: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item .icon { font-size: 1.5rem; background: var(--bg-lighter); padding: 1rem; border-radius: 12px; }
.contact-item strong { display: block; margin-bottom: 0.2rem; }
.contact-form-wrapper { padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-muted); }
.form-group input, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 8px; padding: 0.8rem 1rem; color: var(--text); font-family: inherit; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.1); }
.form-checkbox { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.form-checkbox input { margin-top: 0.3rem; }
.form-checkbox label { font-size: 0.8rem; color: var(--text-muted); }
.text-link { color: var(--primary); text-decoration: underline; cursor: pointer; }

/* Footer */
footer { background: var(--bg-lighter); padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 3rem; flex-wrap: wrap; gap: 2rem; }
.footer-logo { height: 50px; margin-bottom: 1rem; border-radius: 4px; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-muted); transition: var(--transition); cursor: pointer; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 2rem; font-size: 0.9rem; color: var(--text-muted); }
.disclaimer { font-size: 0.8rem; margin-top: 0.5rem; opacity: 0.7; }

/* Modals */
.modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 1rem; opacity: 0; transition: opacity 0.3s; }
.modal.show { display: flex; opacity: 1; }
.modal-content { background: var(--bg); padding: 2.5rem; max-width: 600px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; cursor: pointer; color: var(--text-muted); line-height: 1; }
.close:hover { color: var(--text); }
.modal-body { margin-top: 1.5rem; color: var(--text-muted); font-size: 0.95rem; }
.modal-body p, .modal-body ol { margin-bottom: 1rem; }
.modal-body ol { padding-left: 1.5rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%); z-index: 1500; display: flex; align-items: center; gap: 2rem; padding: 1rem 2rem; transition: bottom 0.5s; width: 90%; max-width: 800px; }
.cookie-banner.show { bottom: 2rem; }

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .standard-grid, .location-wrapper, .docs-grid, .contact-grid { grid-template-columns: 1fr; }
  .location-wrapper { display: flex; flex-direction: column-reverse; }
  .about-images { margin-top: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background: var(--bg-lighter); flex-direction: column; justify-content: center; transition: 0.3s; padding: 2rem; border-left: 1px solid var(--border); }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
  .hero-actions { flex-direction: column; }
}
