:root {
  --luxury-black: #0a0a0a;
  --luxury-dark: #111111;
  --luxury-gray: #1a1a1a;
  --luxury-light-gray: #2a2a2a;
  --luxury-ivory: #f5f1e8;
  --luxury-gold: #d4af37;
  --luxury-gold-light: #e5c158;
  --luxury-gold-dark: #b8941f;
  --luxury-maroon: #8b1e3f;
  --luxury-navy: #1a2332;
  --luxury-green: #2d4a2d;
  
  --font-cinzel: 'Cinzel', Georgia, serif;
  --font-playfair: 'Playfair Display', Georgia, serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --container-max: 1280px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  
  --transition-smooth: cubic-bezier(0.4, 0.0, 0.2, 1);
  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
  --transition-slow: 0.8s;
  
  --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xlarge: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
  
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 12px;
  --radius-xl: 16px;
  
  --z-header: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
  --z-hero-slider: 1;
  --z-hero-overlay: 2;
  --z-hero-content: 3;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-inter);
  font-size: 16px;
  line-height: 1.6;
  color: var(--luxury-ivory);
  background-color: var(--luxury-black);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(139, 30, 63, 0.02) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast) var(--transition-smooth);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all var(--transition-fast) var(--transition-smooth);
}

input, select, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: transparent;
}

ul, ol {
  list-style: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
  z-index: calc(var(--z-header) + 1);
  transition: width 0.1s ease-out;
  box-shadow: var(--shadow-gold);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: var(--z-header);
  transition: all var(--transition-medium) var(--transition-smooth);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  animation: slideDown 0.4s var(--transition-smooth);
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-medium);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.logo:hover {
  color: var(--luxury-gold-light);
  text-shadow: var(--shadow-gold);
}

.logo-img {
  height: 70px;
  width: auto;
  transition: all var(--transition-medium) var(--transition-smooth);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
  50% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7)); }
}

.logo:hover .logo-img {
  animation: logoPulseFast 1s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

@keyframes logoPulseFast {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)); }
  50% { filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9)); }
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--luxury-ivory);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-inter);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
  transform: translateX(-50%);
  transition: width var(--transition-fast) var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--luxury-gold);
  letter-spacing: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
  color: var(--luxury-black);
  padding: 10px 24px;
  border-radius: var(--radius-medium);
  font-weight: 600;
  box-shadow: var(--shadow-small);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--luxury-black);
}

.nav-cta::after {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 8px;
  z-index: calc(var(--z-header) + 2);
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--luxury-gold);
  border-radius: 2px;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--luxury-dark);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 400px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xlarge);
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation: modalSlideUp 0.4s var(--transition-smooth);
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.8);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header h3 {
  font-family: var(--font-cinzel);
  font-size: 18px;
  color: var(--luxury-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close {
  background: transparent;
  color: var(--luxury-ivory);
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--luxury-gold);
  transform: rotate(90deg);
}

.modal-body {
  padding: 20px;
}

.modal-subtitle {
  color: rgba(245, 241, 232, 0.7);
  margin-bottom: 16px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
}

#quickBookingForm {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  color: var(--luxury-ivory);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--luxury-gold);
  width: 14px;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-input {
  background: rgba(245, 241, 232, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-medium);
  padding: 10px 12px;
  color: var(--luxury-ivory);
  font-size: 13px;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.booking-input option {
  background: var(--luxury-dark);
  color: var(--luxury-ivory);
}

.booking-input:focus {
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: rgba(245, 241, 232, 0.08);
}

.booking-input::placeholder {
  color: rgba(245, 241, 232, 0.5);
}

textarea.booking-input {
  resize: vertical;
  min-height: 65px;
}

.booking-submit-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 12px;
  border-radius: var(--radius-medium);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 6px;
  transition: all var(--transition-fast) var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.booking-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.modal-note {
  color: rgba(245, 241, 232, 0.6);
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1.4;
}

.modal-note i {
  color: var(--luxury-gold);
  font-size: 11px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-hero-slider);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.4) 30%,
    rgba(10, 10, 10, 0.5) 70%,
    rgba(10, 10, 10, 0.9) 100%
  );
  z-index: var(--z-hero-overlay);
}

.hero-content {
  position: relative;
  z-index: var(--z-hero-content);
  text-align: center;
  color: var(--luxury-ivory);
  padding: 0 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100vh;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeIn 1.2s var(--transition-smooth) 0.3s both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pretext {
  font-family: var(--font-playfair);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.4s both;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.6s both;
}

.hero-brand-part {
  font-family: var(--font-cinzel);
  font-size: 5rem;
  font-weight: 400;
  color: var(--luxury-ivory);
  line-height: 0.9;
  text-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.2);
  position: relative;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.hero-brand-part::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--luxury-gold), 
    var(--luxury-gold-light), 
    transparent);
  opacity: 0.6;
}

.hero-brand-sub {
  font-family: var(--font-playfair);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.9);
  margin-top: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-divider {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--luxury-gold), 
    var(--luxury-gold-light), 
    transparent);
  margin: 2rem auto;
  animation: expandWidth 1s var(--transition-smooth) 0.8s both;
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

.hero-tagline-container {
  margin-bottom: 3rem;
  max-width: 800px;
  animation: fadeInUp 0.8s var(--transition-smooth) 1s both;
}

.hero-tagline {
  font-family: var(--font-playfair);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(245, 241, 232, 0.95);
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0 1rem;
}

.hero-quick-book-btn {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
  color: var(--luxury-black);
  padding: 16px 40px;
  border-radius: var(--radius-medium);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2rem 0 3rem;
  box-shadow: var(--shadow-medium);
  transition: all var(--transition-fast) var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.hero-quick-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-large), 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 1s var(--transition-smooth) 1.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px;
  position: relative;
  animation: mouseFloat 2.5s ease-in-out infinite;
}

@keyframes mouseFloat {
  0%, 100% {
    transform: translateY(0);
    border-color: rgba(212, 175, 55, 0.4);
  }
  50% {
    transform: translateY(12px);
    border-color: rgba(212, 175, 55, 0.7);
  }
}

.scroll-wheel {
  width: 4px;
  height: 10px;
  background: var(--luxury-gold);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  80% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.scroll-text {
  font-family: var(--font-inter);
  font-size: 0.75rem;
  color: rgba(212, 175, 55, 0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-cinzel);
  font-size: 48px;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
  margin: 0 auto 20px;
}

.section-subtitle {
  font-family: var(--font-playfair);
  font-size: 20px;
  color: var(--luxury-ivory);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

.properties-section {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(17, 17, 17, 0.95) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.properties-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 30, 63, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.properties-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.property-card {
  flex: 1;
  min-width: 320px;
  max-width: 350px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(212, 175, 55, 0.1);
  transition: all 0.5s var(--transition-smooth);
  position: relative;
  display: block;
  border: 1px solid rgba(212, 175, 55, 0.05);
  backdrop-filter: blur(10px);
}

.property-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(212, 175, 55, 0.2),
    inset 0 0 0 1px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.property-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.property-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.property-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.property-slide.active {
  opacity: 1;
  z-index: 2;
}

.property-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 10, 10, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  z-index: 3;
  pointer-events: none;
}

.property-tag {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
  color: var(--luxury-black);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: var(--shadow-medium);
  z-index: 4;
  position: relative;
  pointer-events: auto;
}

.property-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(212, 175, 55, 0.15) 70%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s var(--transition-smooth);
  pointer-events: none;
  z-index: 2;
  animation: propertyGlowPulse 3s ease-in-out infinite;
}

@keyframes propertyGlowPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.property-card:hover .property-glow {
  opacity: 0.8;
  animation: propertyGlowPulseHover 2s ease-in-out infinite;
}

@keyframes propertyGlowPulseHover {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.property-content {
  padding: 32px;
  position: relative;
  z-index: 3;
  background: rgba(26, 26, 26, 0.9);
}

.property-name {
  font-family: var(--font-cinzel);
  font-size: 28px;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.property-location {
  font-size: 14px;
  color: var(--luxury-ivory);
  opacity: 0.8;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.property-location::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: var(--luxury-ivory);
  opacity: 0.8;
}

.property-description {
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 15px;
}

.property-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--luxury-gold);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.property-card:hover .property-button {
  gap: 15px;
  color: var(--luxury-gold-light);
}

.property-button i {
  transition: transform var(--transition-fast) var(--transition-smooth);
}

.property-card:hover .property-button i {
  transform: translateX(5px);
}

.presence-section {
    background: var(--luxury-dark);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.presence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 40%),
        repeating-linear-gradient(45deg, transparent, transparent 1px, rgba(212, 175, 55, 0.01) 1px, rgba(212, 175, 55, 0.01) 2px);
    pointer-events: none;
    z-index: 1;
}

.presence-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.presence-title {
    font-family: var(--font-cinzel);
    font-size: 42px;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.presence-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.presence-intro {
    font-family: var(--font-playfair);
    font-size: 18px;
    color: var(--luxury-ivory);
    line-height: 1.7;
    max-width: 900px;
    margin: 30px auto 0;
    opacity: 0.9;
    text-align: center;
}

.presence-content {
    position: relative;
    z-index: 2;
}

.presence-main-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-large);
    padding: 40px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.presence-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light), var(--luxury-gold));
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-icon {
    color: var(--luxury-gold);
    font-size: 32px;
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-header h3 {
    font-family: var(--font-cinzel);
    font-size: 28px;
    color: var(--luxury-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.content-item {
    background: rgba(245, 241, 232, 0.03);
    border-radius: var(--radius-large);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.content-item:nth-child(1) { animation-delay: 0.1s; }
.content-item:nth-child(2) { animation-delay: 0.2s; }
.content-item:nth-child(3) { animation-delay: 0.3s; }
.content-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.content-item:hover::before {
    opacity: 1;
}

.content-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-medium);
}

.item-icon {
    color: var(--luxury-gold);
    font-size: 24px;
    background: rgba(212, 175, 55, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--transition-smooth);
}

.content-item:hover .item-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.item-content {
    flex: 1;
}

.item-content h4 {
    font-family: var(--font-cinzel);
    font-size: 20px;
    color: var(--luxury-ivory);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.item-content p {
    font-family: var(--font-playfair);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.9);
    margin: 0;
}

.item-content p strong {
    color: var(--luxury-gold-light);
    font-weight: 600;
}

.presence-stats {
    text-align: center;
}

.stats-title {
    font-family: var(--font-cinzel);
    font-size: 32px;
    color: var(--luxury-gold);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: var(--radius-large);
    padding: 30px 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
    transform: translateX(-100%);
    transition: transform 0.6s var(--transition-smooth);
}

.stat-card:hover::before {
    transform: translateX(0);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-medium);
    background: rgba(26, 26, 26, 0.9);
}

.stat-icon {
    color: var(--luxury-gold);
    font-size: 32px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-cinzel);
    font-size: 48px;
    font-weight: 700;
    color: var(--luxury-gold);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 14px;
    color: var(--luxury-ivory);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    opacity: 0.9;
}

.why-choose-section {
  background: var(--luxury-gray);
  position: relative;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.02) 2px, rgba(212, 175, 55, 0.02) 4px);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 40px 25px;
  background: rgba(245, 241, 232, 0.03);
  border-radius: var(--radius-large);
  border: 1px solid rgba(212, 175, 55, 0.05);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
  transform: translateX(-100%);
  transition: transform 0.6s var(--transition-smooth);
}

.feature-item:hover::before {
  transform: translateX(0);
}

.feature-item {
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.feature-item:nth-child(1) { animation-delay: 0s; }
.feature-item:nth-child(2) { animation-delay: 1.5s; }
.feature-item:nth-child(3) { animation-delay: 3s; }
.feature-item:nth-child(4) { animation-delay: 4.5s; }

.feature-item:hover {
  background: rgba(245, 241, 232, 0.05);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-10px);
  box-shadow: var(--shadow-large);
}

.feature-icon {
  color: var(--luxury-gold);
  font-size: 48px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.feature-item:hover .feature-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.feature-text h4 {
  font-family: var(--font-cinzel);
  font-size: 22px;
  font-weight: 600;
  color: var(--luxury-gold);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.feature-text p {
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.7;
  font-size: 16px;
  text-align: center;
}

.premium-offers {
    background: linear-gradient(135deg, 
        rgba(17, 17, 17, 0.98) 0%, 
        rgba(10, 10, 10, 0.99) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}

.premium-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, 
            rgba(212, 175, 55, 0.08) 0%, 
            transparent 60%),
        radial-gradient(circle at 80% 70%, 
            rgba(139, 30, 63, 0.05) 0%, 
            transparent 60%),
        radial-gradient(circle at 40% 80%, 
            rgba(45, 74, 45, 0.03) 0%, 
            transparent 60%);
    pointer-events: none;
    animation: backgroundPulse 15s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.premium-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.premium-offer-card {
    background: linear-gradient(145deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(17, 17, 17, 0.98) 100%);
    border-radius: var(--radius-xl);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(212, 175, 55, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px) rotateX(5deg);
    animation: cardEntrance 0.8s var(--transition-smooth) forwards;
}

.premium-offer-card:nth-child(1) { animation-delay: 0.1s; }
.premium-offer-card:nth-child(2) { animation-delay: 0.2s; }
.premium-offer-card:nth-child(3) { animation-delay: 0.3s; }
.premium-offer-card:nth-child(4) { animation-delay: 0.4s; }
.premium-offer-card:nth-child(5) { animation-delay: 0.5s; }
.premium-offer-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.premium-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--luxury-gold), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-offer-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(212, 175, 55, 0.15),
        inset 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.premium-offer-card:hover::before {
    opacity: 1;
}

.premium-offer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 70%);
    opacity: 0.3;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
    animation: constantGlow 3s ease-in-out infinite alternate;
}

@keyframes constantGlow {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.premium-offer-card:hover .premium-offer-glow {
    opacity: 0.6;
    animation: constantGlowHover 2s ease-in-out infinite alternate;
}

@keyframes constantGlowHover {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.highlight-popular {
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(26, 26, 26, 0.95) 100%);
}

.resort-theme {
    border-color: rgba(212, 175, 55, 0.25);
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.03) 0%, 
        rgba(26, 26, 26, 0.95) 100%);
}

.adventure-theme {
    border-color: rgba(26, 35, 50, 0.4);
    background: linear-gradient(145deg, 
        rgba(26, 35, 50, 0.05) 0%, 
        rgba(26, 26, 26, 0.95) 100%);
}

.group-theme {
    border-color: rgba(212, 175, 55, 0.2);
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(26, 26, 26, 0.95) 100%);
}

.seasonal-theme {
    border-color: rgba(139, 30, 63, 0.3);
    background: linear-gradient(145deg, 
        rgba(139, 30, 63, 0.05) 0%, 
        rgba(26, 26, 26, 0.95) 100%);
}

.custom-theme {
    border-color: rgba(45, 74, 45, 0.3);
    background: linear-gradient(145deg, 
        rgba(45, 74, 45, 0.05) 0%, 
        rgba(26, 26, 26, 0.95) 100%);
}

.premium-offer-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: var(--shadow-small);
}

.popular-tag {
    background: linear-gradient(45deg, var(--luxury-gold), var(--luxury-gold-light));
    color: var(--luxury-black);
}

.resort-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--luxury-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.adventure-tag {
    background: rgba(26, 35, 50, 0.4);
    color: var(--luxury-ivory);
    border: 1px solid rgba(26, 35, 50, 0.6);
}

.group-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--luxury-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.seasonal-tag {
    background: rgba(139, 30, 63, 0.2);
    color: var(--luxury-maroon);
    border: 1px solid rgba(139, 30, 63, 0.3);
}

.custom-tag {
    background: rgba(45, 74, 45, 0.2);
    color: var(--luxury-green);
    border: 1px solid rgba(45, 74, 45, 0.3);
}

.premium-offer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.premium-offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(212, 175, 55, 0.2) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-offer-card:hover .icon-glow {
    opacity: 1;
}

.premium-offer-icon i {
    font-size: 28px;
    color: var(--luxury-gold);
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.seasonal-theme .premium-offer-icon {
    background: rgba(139, 30, 63, 0.1);
    border-color: rgba(139, 30, 63, 0.2);
}

.seasonal-theme .premium-offer-icon i {
    color: var(--luxury-maroon);
}

.custom-theme .premium-offer-icon {
    background: rgba(45, 74, 45, 0.1);
    border-color: rgba(45, 74, 45, 0.2);
}

.custom-theme .premium-offer-icon i {
    color: var(--luxury-green);
}

.premium-offer-card:hover .premium-offer-icon {
    transform: scale(1.1);
    border-color: var(--luxury-gold);
}

.premium-offer-card:hover .premium-offer-icon i {
    transform: scale(1.1);
}

.premium-offer-title h3 {
    font-family: var(--font-cinzel);
    font-size: 24px;
    color: var(--luxury-gold);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.seasonal-theme .premium-offer-title h3 {
    color: var(--luxury-maroon);
}

.custom-theme .premium-offer-title h3 {
    color: var(--luxury-green);
}

.premium-offer-subtitle {
    color: rgba(245, 241, 232, 0.7);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.premium-offer-content {
    margin-bottom: 25px;
    flex-grow: 1;
}

.offer-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--luxury-ivory);
    font-size: 15px;
    font-weight: 500;
}

.benefit-item i {
    color: var(--luxury-gold);
    font-size: 14px;
    width: 28px;
    height: 28px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-highlight-gold {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-medium);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.offer-highlight-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--luxury-gold);
}

.discount-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--luxury-gold);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.discount-sub {
    font-size: 14px;
    color: rgba(245, 241, 232, 0.7);
    display: block;
}

.discount-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--luxury-gold);
    color: var(--luxury-black);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.offer-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--luxury-ivory);
    font-size: 14px;
    font-weight: 500;
}

.offer-features i {
    color: var(--luxury-gold);
    font-size: 12px;
}

.offer-highlight-adventure {
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.1) 0%, 
        rgba(26, 35, 50, 0.05) 100%);
    border-radius: var(--radius-medium);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(26, 35, 50, 0.2);
}

.adventure-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.perk {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 15px;
    background: rgba(26, 35, 50, 0.1);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(26, 35, 50, 0.2);
}

.perk i {
    color: var(--luxury-gold);
    font-size: 20px;
}

.perk span {
    font-size: 12px;
    color: var(--luxury-ivory);
    font-weight: 500;
}

.group-deal {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-medium);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-align: center;
}

.deal-main {
    margin-bottom: 15px;
}

.deal-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--luxury-gold);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.deal-condition {
    font-size: 13px;
    color: rgba(245, 241, 232, 0.7);
    display: block;
}

.deal-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--luxury-gold);
    font-size: 14px;
    font-weight: 500;
}

.seasonal-highlight {
    background: linear-gradient(135deg, 
        rgba(139, 30, 63, 0.1) 0%, 
        rgba(139, 30, 63, 0.05) 100%);
    border-radius: var(--radius-medium);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(139, 30, 63, 0.15);
}

.seasonal-discount {
    text-align: center;
    margin-bottom: 15px;
}

.season-badge-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(139, 30, 63, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    border-left: 2px solid var(--luxury-maroon);
    font-size: 10px;
}

.season-badge-small i {
    color: var(--luxury-maroon);
    font-size: 12px;
}

.season-badge-small span {
    font-size: 10px;
    color: var(--luxury-ivory);
    font-weight: 500;
}

.seasonal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 15px;
    background: rgba(139, 30, 63, 0.1);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(139, 30, 63, 0.2);
}

.feature i {
    color: var(--luxury-maroon);
    font-size: 20px;
}

.feature span {
    font-size: 12px;
    color: var(--luxury-ivory);
    font-weight: 500;
}

.custom-highlight {
    background: linear-gradient(135deg, 
        rgba(45, 74, 45, 0.1) 0%, 
        rgba(45, 74, 45, 0.05) 100%);
    border-radius: var(--radius-medium);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(45, 74, 45, 0.15);
    text-align: center;
}

.custom-badge-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--luxury-green);
    font-size: 14px;
    font-weight: 600;
}

.custom-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.custom-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--luxury-ivory);
    font-size: 14px;
    font-weight: 500;
}

.custom-feature i {
    color: var(--luxury-green);
    font-size: 12px;
    width: 22px;
    height: 22px;
    background: rgba(45, 74, 45, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.group-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--luxury-ivory);
    font-size: 14px;
    font-weight: 500;
}

.group-features i {
    color: var(--luxury-gold);
    font-size: 12px;
}

.offer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--luxury-gold);
    display: block;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 12px;
    color: rgba(245, 241, 232, 0.7);
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-offer-desc {
    color: rgba(245, 241, 232, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.premium-book-btn {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-light) 100%);
    color: var(--luxury-black);
    padding: 14px 25px;
    border-radius: var(--radius-medium);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-fast) var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin-top: auto;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

.seasonal-theme .premium-book-btn {
    background: linear-gradient(135deg, var(--luxury-maroon) 0%, #b83232 100%);
    box-shadow: 0 6px 20px rgba(139, 30, 63, 0.3);
}

.custom-contact-btn {
    background: linear-gradient(135deg, var(--luxury-green) 0%, #3a6b3a 100%);
    box-shadow: 0 6px 20px rgba(45, 74, 45, 0.3);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-book-btn:hover .btn-glow {
    opacity: 1;
}

.premium-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    gap: 12px;
}

.seasonal-theme .premium-book-btn:hover {
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.4);
}

.custom-contact-btn:hover {
    box-shadow: 0 10px 30px rgba(45, 74, 45, 0.4);
}

.premium-book-btn i {
    font-size: 14px;
    transition: transform var(--transition-fast) var(--transition-smooth);
}

.premium-book-btn:hover i {
    transform: translateX(5px);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    }
}

.offers-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.premium-note {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
}

.offers-note i {
    color: var(--luxury-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.offers-note p {
    color: rgba(245, 241, 232, 0.7);
    font-size: 14px;
    margin: 0;
    text-align: center;
}

.map-section {
  background: var(--luxury-dark);
  position: relative;
  overflow: hidden;
}

.map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.01) 2px, rgba(212, 175, 55, 0.01) 4px),
    radial-gradient(circle at 60% 40%, rgba(139, 30, 63, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-large);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.02) 100%);
  pointer-events: none;
}

.map-controls {
  display: flex;
  flex-direction: column;
}

.map-controls h3 {
  font-family: var(--font-cinzel);
  font-size: 24px;
  color: var(--luxury-gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-instruction {
  color: rgba(245, 241, 232, 0.7);
  font-size: 14px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.property-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.map-property-card {
  background: rgba(245, 241, 232, 0.03);
  border-radius: var(--radius-medium);
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  cursor: pointer;
  transition: all var(--transition-fast) var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.map-property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--luxury-gold);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.map-property-card:hover::before,
.map-property-card.active::before {
  transform: scaleY(1);
}

.map-property-card:hover,
.map-property-card.active {
  background: rgba(245, 241, 232, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
}

.map-property-card h4 {
  font-family: var(--font-cinzel);
  font-size: 18px;
  color: var(--luxury-gold);
  margin-bottom: 5px;
}

.property-location-map {
  font-size: 14px;
  color: var(--luxury-ivory);
  opacity: 0.8;
  margin-bottom: 5px;
}

.property-tag-map {
  font-size: 12px;
  color: var(--luxury-gold);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
}

.map-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(212, 175, 55, 0.1);
  color: rgba(245, 241, 232, 0.7);
  font-size: 14px;
  margin-top: auto;
}

.map-tip i {
  color: var(--luxury-gold);
  font-size: 16px;
}

.map-display {
  height: 500px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

#leaflet-map {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-large);
}

.footer {
  background: #070707;
  color: var(--luxury-ivory);
  padding: 80px 0 24px;
  position: relative;
}

.footer-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
  box-shadow: 0 0 10px var(--luxury-gold);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-container {
  margin-bottom: 25px;
}

.footer-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
  transition: all var(--transition-medium) var(--transition-smooth);
}

.footer-brand:hover .footer-logo {
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.9));
  transform: scale(1.05);
}

.footer-brand-name {
  font-family: var(--font-cinzel);
  font-size: 24px;
  font-weight: 600;
  color: var(--luxury-gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-location {
  font-size: 16px;
  color: rgba(245, 241, 232, 0.8);
  margin-bottom: 5px;
  font-weight: 500;
}

.footer-tagline {
  font-style: italic;
  color: rgba(245, 241, 232, 0.6);
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-heading {
  font-family: var(--font-cinzel);
  font-size: 22px;
  font-weight: 600;
  color: var(--luxury-gold);
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  align-self: flex-start;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--luxury-gold);
  opacity: 0.7;
}

.contact-info-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-item-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(245, 241, 232, 0.03);
  border-radius: var(--radius-medium);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all var(--transition-fast) var(--transition-smooth);
}

.contact-item-footer:hover {
  background: rgba(245, 241, 232, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
}

.contact-icon-footer {
  color: var(--luxury-gold);
  flex-shrink: 0;
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.contact-item-footer:hover .contact-icon-footer {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.contact-details-footer {
  display: flex;
  flex-direction: column;
}

.contact-label-footer {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(245, 241, 232, 0.6);
  margin-bottom: 4px;
}

.contact-value-footer {
  color: var(--luxury-ivory);
  font-weight: 500;
  font-size: 15px;
}

.contact-value-footer:hover {
  color: var(--luxury-gold);
}

.footer-social-section {
  text-align: center;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  margin-bottom: 30px;
}

.social-heading {
  font-family: var(--font-cinzel);
  font-size: 20px;
  font-weight: 600;
  color: var(--luxury-gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.social-icons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon-footer {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-ivory);
  font-size: 20px;
  transition: all var(--transition-fast) var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.social-icon-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--luxury-gold);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s var(--transition-smooth);
  z-index: 1;
}

.social-icon-footer i {
  position: relative;
  z-index: 2;
}

.social-icon-footer:hover::before {
  transform: scale(1);
}

.social-icon-footer:hover {
  color: var(--luxury-black);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--luxury-gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  text-align: center;
}

.legal-links-footer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legal-links-footer a {
    color: var(--luxury-gold);
    font-size: 14px;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast) var(--transition-smooth);
}

.legal-links-footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.legal-links-footer a:hover::after {
    width: 100%;
}

.legal-links-footer a:hover {
    color: var(--luxury-gold-light);
}

.copyright {
  font-size: 14px;
  color: rgba(245, 241, 232, 0.4);
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.back-to-home {
  color: var(--luxury-gold);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast) var(--transition-smooth);
}

.back-to-home:hover {
  color: var(--luxury-gold-light);
  gap: 12px;
}

.back-to-home i {
  transition: transform var(--transition-fast) var(--transition-smooth);
}

.back-to-home:hover i {
  transform: translateX(-3px);
}

.gold-flourish {
  position: relative;
}

.gold-flourish::before,
.gold-flourish::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--luxury-gold);
  font-size: 14px;
  opacity: 0.7;
}

.gold-flourish::before {
  left: -32px;
}

.gold-flourish::after {
  right: -32px;
}

@media (max-width: 1024px) {
  .hero-brand-part {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .content-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .properties-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .property-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .content-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-item {
    padding: 25px;
  }
  
  .premium-offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .premium-offer-card {
    padding: 30px;
  }
  
  .premium-offer-icon {
    width: 60px;
    height: 60px;
  }
  
  .premium-offer-icon i {
    font-size: 24px;
  }
  
  .premium-offer-title h3 {
    font-size: 22px;
  }
  
  .discount-main {
    font-size: 28px;
  }
  
  .premium-book-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .map-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .map-display {
    height: 400px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .feature-item {
    padding: 35px 20px;
  }
  
  .feature-icon {
    font-size: 42px;
    width: 70px;
    height: 70px;
  }
  
  .feature-text h4 {
    font-size: 20px;
  }
  
  .feature-text p {
    font-size: 15px;
  }
  
  .footer-main {
    gap: 40px;
  }
  
  .footer-logo {
    height: 70px;
  }
  
  .contact-item-footer {
    padding: 12px;
  }
  
  .modal-content {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
  
  .header {
    height: 70px;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 0;
    gap: 0;
    transition: right 0.4s var(--transition-smooth);
    overflow-y: auto;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    padding: 20px 32px;
    width: 100%;
    font-size: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-cta {
    margin: 20px 32px;
    text-align: center;
    width: calc(100% - 64px);
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-brand-part {
    font-size: 2.5rem;
  }
  
  .hero-brand-sub {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
  }
  
  .hero-pretext {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
  }
  
  .hero-tagline {
    font-size: 1.125rem;
  }
  
  .hero-quick-book-btn {
    padding: 14px 30px;
    font-size: 15px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
  
  .presence-section {
    padding: 60px 0;
  }
  
  .presence-title {
    font-size: 32px;
  }
  
  .presence-intro {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .presence-main-card {
    padding: 25px 20px;
    margin-bottom: 40px;
  }
  
  .card-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .header-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .card-header h3 {
    font-size: 22px;
  }
  
  .content-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .item-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 auto;
  }
  
  .item-content h4 {
    font-size: 18px;
  }
  
  .item-content p {
    font-size: 15px;
  }
  
  .stats-title {
    font-size: 26px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stat-card {
    padding: 20px 15px;
  }
  
  .stat-icon {
    font-size: 26px;
    margin-bottom: 10px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .premium-offers {
    padding: 60px 0 40px;
  }
  
  .premium-offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .premium-offer-card {
    padding: 25px;
  }
  
  .premium-offer-header {
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .premium-offer-icon {
    width: 55px;
    height: 55px;
  }
  
  .premium-offer-icon i {
    font-size: 22px;
  }
  
  .premium-offer-title h3 {
    font-size: 20px;
  }
  
  .premium-offer-subtitle {
    font-size: 13px;
  }
  
  .premium-offer-tag {
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .discount-main {
    font-size: 24px;
  }
  
  .benefit-item {
    font-size: 14px;
  }
  
  .benefit-item i {
    font-size: 13px;
    width: 25px;
    height: 25px;
  }
  
  .premium-offer-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .premium-book-btn {
    padding: 12px 18px;
    font-size: 14px;
    gap: 8px;
  }
  
  .premium-book-btn i {
    font-size: 13px;
  }
  
  .offers-note {
    padding: 15px;
  }
  
  .offers-note i {
    font-size: 16px;
  }
  
  .offers-note p {
    font-size: 13px;
  }
  
  .contact-card {
    padding: 24px;
  }
  
  .property-name {
    font-size: 24px;
  }
  
  .map-container {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .map-controls h3 {
    font-size: 20px;
  }
  
  .map-display {
    height: 350px;
    min-height: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    animation: none;
  }
  
  .feature-item:hover {
    animation: gentleFloat 6s ease-in-out infinite;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    height: 65px;
  }
  
  .footer-tagline {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-heading {
    align-self: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-info-footer {
    align-items: center;
  }
  
  .contact-item-footer {
    width: 100%;
    max-width: 400px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .social-icons-container {
    gap: 15px;
  }
  
  .social-icon-footer {
    width: 50px;
    height: 50px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .modal-content {
    max-width: 95%;
    margin: 10px;
    max-height: 80vh;
  }
  
  .modal-header,
  .modal-body {
    padding: 15px;
  }
  
  .modal-header h3 {
    font-size: 16px;
  }
  
  .booking-input {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .booking-submit-btn {
    padding: 12px;
    font-size: 14px;
  }
  
  .modal-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero-brand-part {
    font-size: 2.25rem;
  }
  
  .hero-brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  
  .hero-pretext {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-quick-book-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .presence-title {
    font-size: 28px;
  }
  
  .presence-intro {
    font-size: 15px;
  }
  
  .presence-main-card {
    padding: 20px 15px;
  }
  
  .card-header h3 {
    font-size: 20px;
  }
  
  .content-item {
    padding: 18px 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .premium-offers-grid {
    gap: 15px;
  }
  
  .premium-offer-card {
    padding: 20px;
  }
  
  .premium-offer-header {
    gap: 12px;
  }
  
  .premium-offer-icon {
    width: 50px;
    height: 50px;
  }
  
  .premium-offer-icon i {
    font-size: 20px;
  }
  
  .premium-offer-title h3 {
    font-size: 18px;
  }
  
  .premium-offer-subtitle {
    font-size: 12px;
  }
  
  .discount-main {
    font-size: 22px;
  }
  
  .premium-book-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .footer-logo {
    height: 60px;
  }
  
  .social-icon-footer {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .contact-item-footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-icon-footer {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .modal-content {
    max-width: 98%;
    margin: 5px;
    max-height: 85vh;
  }
  
  .modal-header {
    padding: 12px 15px;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .booking-input {
    padding: 8px 10px;
    font-size: 12px;
  }
}

.fade-in {
  animation: fadeIn 0.6s var(--transition-smooth) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUpFade 0.6s var(--transition-smooth) forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .feature-item,
  .premium-offer-card,
  .pulse-effect,
  .gentleFloat,
  .backgroundPulse,
  .cardEntrance,
  .constantGlow,
  .propertyGlowPulse {
    animation: none !important;
  }
}

a:focus,
button:focus,
input:focus,
select:focus {
  outline: 3px solid var(--luxury-gold);
  outline-offset: 2px;
}

#leaflet-map {
  min-height: 300px;
}

.map-display {
  min-height: 300px;
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }
}