:root {
  --primary-color: #0b1a30; /* Dark Navy */
  --secondary-color: #d4af37; /* Premium Gold */
  --accent-teal: #0f4c5c; /* Deep Teal */
  --accent-sand: #e3d5ca; /* Premium Sand/Beige */
  --text-dark: #2b2d42;
  --text-light: #f8f9fa;
  --bg-light: #fbfbfb;
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  padding-top: 80px; /* Space for sticky header */
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Typography */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }

/* Sticky Header */
.navbar {
  transition: var(--transition);
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--primary-color) !important;
  /* letter-spacing: -1px; */
  line-height: 1.125;
}

.navbar-brand span {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 400;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
  font-size: 1rem;
  text-transform: capitalize;
  letter-spacing: 0px;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-color) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn-custom {
  background: linear-gradient(135deg, var(--secondary-color), #b5952f);
  color: var(--text-light) !important;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-custom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #b5952f, var(--secondary-color));
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn-custom:hover::before {
  opacity: 1;
}

.btn-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-custom-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-custom-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
  height: calc(100vh - 80px);
  min-height: 600px;
  background: linear-gradient(rgba(11, 26, 48, 0.6), rgba(11, 26, 48, 0.8)), url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--text-light);
  position: relative;
  background-attachment: fixed; /* Parallax effect */
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
  opacity: 0.9;
}

.hero-content .btn {
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

/* Page Headers */
.page-header {
  background: linear-gradient(rgba(11, 26, 48, 0.8), rgba(11, 26, 48, 0.8)), url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 120px 0 80px;
  margin-top: -80px; /* offset padding-top of body */
  background-attachment: fixed;
}

/* Cards */
.custom-card {
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.custom-card .icon-box {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.custom-card:hover .icon-box {
  transform: scale(1.1);
}

/* Destination Cards */
.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11,26,48,0.95), transparent);
  padding: 30px 20px 20px;
  color: #fff;
  transition: var(--transition);
}

.destination-card:hover .destination-overlay {
  padding-bottom: 30px;
}

/* Image wrappers */
.img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.img-wrapper:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-teal));
}

.footer a {
  color: #a0aabf;
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.05);
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Floating Elements */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none !important;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  color: #fff;
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--secondary-color);
  color: #fff;
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* Real Estate Highlight */
.investment-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
  padding: 100px 0;
  position: relative;
}

.investment-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('../images/membership.jpg') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

/* Utilities */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  font-size: 2.5rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Forms */
.form-control, .form-select {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: var(--transition);
  background-color: #fcfcfc;
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
  background-color: #fff;
}

/* Feature check lists */
.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

.check-list li i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-right: 15px;
  background: rgba(212, 175, 55, 0.1);
  padding: 8px;
  border-radius: 50%;
}
