/* Luxury Light Color Palette */

:root {
  --primary: #925eff; /* Bold Electric Lavender */
  --primary-dark: #7d4ed4; /* Strong Deep Lavender */
  --primary-light: #dab8ff; /* Glowing Lavender Tint */

  --secondary: #ff69b4; /* Hot Pink (Bright Highlight) */
  --accent: #38b6ff; /* Bright Sky Blue */

  --surface: #fff2fa; /* Rosy White */
  --surface-secondary: #f3e5ff; /* Lilac White */
  --surface-tertiary: #e4f3ff; /* Bright Blue-White */

  --text-primary: #1f1f1f; /* True Dark Gray */
  --text-secondary: #3d3d3d; /* Mid Gray */
  --text-tertiary: #6e6e6e; /* Soft Gray */

  --border: #d2b3ff; /* Bright Purple Border */
  --border-light: #f2d6ff; /* Very Light Highlight Border */

  --shadow-sm: 0 1px 2px 0 rgba(146, 94, 255, 0.2);
  --shadow: 0 2px 4px 0 rgba(255, 105, 180, 0.25),
    0 1px 3px -1px rgba(146, 94, 255, 0.2);
  --shadow-md: 0 6px 10px -1px rgba(56, 182, 255, 0.25),
    0 2px 6px -2px rgba(56, 182, 255, 0.2);
  --shadow-lg: 0 12px 18px -3px rgba(146, 94, 255, 0.25),
    0 6px 8px -4px rgba(255, 105, 180, 0.2);
  --shadow-xl: 0 24px 30px -6px rgba(146, 94, 255, 0.3),
    0 10px 14px -6px rgba(56, 182, 255, 0.25);

  --radius: 4px;
  --radius-sm: 4px;
  --radius-lg: 4px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Background Design Elements */
body::before {
  content: "";
  position: fixed;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(232, 213, 183, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(245, 230, 211, 0.04) 0%,
      transparent 50%
    );
  z-index: -2;
  animation: float 20s ease-in-out infinite;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      135deg,
      transparent 0%,
      rgba(212, 175, 55, 0.01) 50%,
      transparent 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23D4AF37" opacity="0.02"><circle cx="20" cy="20" r="2"/><circle cx="80" cy="40" r="1.5"/><circle cx="40" cy="80" r="1"/><circle cx="70" cy="15" r="1.2"/><circle cx="15" cy="70" r="0.8"/></svg>');
  z-index: -1;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-20px, -10px) rotate(1deg);
  }
  66% {
    transform: translate(10px, -20px) rotate(-1deg);
  }
}

/* Typography System */
.display-xl {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: "Playfair Display", serif;
}

.display-lg {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-family: "Playfair Display", serif;
}

.heading-xl {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.body {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-tertiary);
}

/* Layout System */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.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: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #9c7f1a 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 20px;
  font-weight: 200;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  z-index: 1001;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-link.active {
  color: var(--primary);
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.contact-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #9c7f1a 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: var(--surface-secondary);
  color: var(--primary);
}

.mobile-menu-btn.active {
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  box-shadow: var(--shadow-xl);
  padding: 2rem 1.5rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  border-left: 1px solid var(--border);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--surface-secondary);
  color: var(--primary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-link:hover {
  background: var(--surface-secondary);
  color: var(--text-primary);
}

.mobile-nav-link.active {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: white;
}

.mobile-contact {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.mobile-contact-btn:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #9c7f1a 100%);
  transform: translateY(-1px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  padding: 10rem 0 8rem;
  background: linear-gradient(
    135deg,
    var(--surface) 0%,
    var(--surface-secondary) 50%,
    var(--surface-tertiary) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 70%
  );
  /* url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" fill="%23D4AF37" opacity="0.03"><circle cx="200" cy="100" r="120"/><circle cx="300" cy="250" r="80"/><path d="M50,200 Q200,100 350,200 T650,200" stroke="%23E8D5B7" stroke-width="2" fill="none" opacity="0.4"/></svg>'); */
  /* animation: heroFloat 15s ease-in-out infinite; */
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, -20px) scale(1.05);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    var(--primary) 70%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  backdrop-filter: blur(10px);
}

.search-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-input {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background: var(--surface);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input:hover {
  border-color: var(--primary-light);
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    var(--surface) 0%,
    var(--surface-secondary) 100%
  );
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Destinations Section */
.destinations {
  background: var(--surface-secondary);
  padding: 3rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .heading-xl {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-header .body-lg {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
}

.destination-card {
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.destination-image {
  height: 200px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.destination-card:nth-child(2) .destination-image {
  background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.destination-card:nth-child(3) .destination-image {
  background: linear-gradient(45deg, #c9a876, var(--primary-light));
}

.destination-card:nth-child(4) .destination-image {
  background: linear-gradient(45deg, var(--accent), #f0dcc9);
}

.destination-content {
  padding: 1.5rem;
}

.destination-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.destination-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.destination-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
/* Properties Section */
.properties {
  background: var(--surface);
}

.property-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.4s ease;
  position: relative;
}

.property-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(232, 213, 183, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.property-card:hover::before {
  opacity: 1;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.property-image {
  height: 280px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.property-card:nth-child(2) .property-image {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.property-card:nth-child(3) .property-image {
  background: linear-gradient(135deg, #c9a876 0%, var(--primary-light) 100%);
}

.property-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(254, 253, 251, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border-light);
}

.property-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.property-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.property-location {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
  justify-content: start;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--surface-secondary);
  padding: 4px 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  cursor: default;
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* explore button card design */
.buttons-section {
  background: linear-gradient(
    90deg,
    #e36bad 0%,
    #4285f4 50%,
    #ffffff 50%,
    #ffffff 100%
  );
  border-radius: 1px;
  overflow: hidden;
  display: flex;
  height: 60px;
  border: 1px solid #1f1f88;
  position: relative;
}

.book-now-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-now-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.or-circle {
  background: white;
  color: #333;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  border: 2px solid #e8eaed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.explore-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.explore-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .tour-card {
    margin: 10px;
  }

  .hero-image {
    height: 350px;
    padding: 20px;
  }

  .title {
    font-size: 28px;
  }

  .pricing-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .price-details {
    align-items: center;
  }

  .current-price {
    font-size: 36px;
  }

  .buttons-section {
    flex-direction: column;
    height: auto;
    background: linear-gradient(
      180deg,
      #4285f4 0%,
      #4285f4 50%,
      #ffffff 50%,
      #ffffff 100%
    );
  }

  .divider {
    position: static;
    transform: none;
    padding: 15px 0;
    display: flex;
    justify-content: center;
  }

  .book-now-btn,
  .explore-btn {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .tags {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .title {
    font-size: 24px;
  }

  .customizable-tag,
  .duration-tag {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Services Section */
.services {
  background: var(--surface-secondary);
  padding: 3rem 1rem;
}

.service-card {
  background: var(--surface);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(2) .service-icon {
  background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(45deg, #c9a876, var(--primary-light));
}

.service-card:nth-child(4) .service-icon {
  background: linear-gradient(45deg, var(--accent), #f0dcc9);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(
    135deg,
    var(--surface) 0%,
    var(--surface-secondary) 100%
  );
  padding: 5rem 0;
}

.testimonial-card {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    var(--accent) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
  flex-grow: 1;
  font-weight: 500;
}

/* .testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary);
  position: absolute;
  top: -2rem;
  left: -1.5rem;
  font-family: "Playfair Display", serif;
  opacity: 0.15;
  z-index: 1;
}

.testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  font-family: "Playfair Display", serif;
  opacity: 0.15;
} */

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.author-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.testimonial-card:hover .author-avatar::before {
  transform: translateX(100%);
}

.testimonial-card:nth-child(2) .author-avatar {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.testimonial-card:nth-child(3) .author-avatar {
  background: linear-gradient(135deg, #c9a876 0%, var(--primary-light) 100%);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Enhanced animations */
.animate-fade-in {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive improvements */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
  }

  .testimonial-quote::before {
    font-size: 4rem;
    top: -1.5rem;
  }
}

/* Join our collection */


/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-primary) 0%, #1a1816 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}

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

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, white 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 8rem 0 6rem;
  }

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

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

  .search-card {
    padding: 2rem;
  }

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

  .contact-btn {
    display: none;
  }

  .property-features {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.animate-delay-1 {
  animation-delay: 0.1s;
  animation-fill-mode: both;
}
.animate-delay-2 {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
.animate-delay-3 {
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.animate-delay-4 {
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.shimmer {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  background-size: 200px 100%;
  animation: shimmer 2s infinite;
}
