@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --primary-color: #004D7A;
  /* Deep Ocean Blue */
  --secondary-color: #0087A2;
  /* Lighter Turquoise */
  --accent-color: #C5A059;
  /* Luxury Gold */
  --accent-hover: #D8B365;
  --text-dark: #2D3748;
  --text-light: #718096;
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.3s ease;
  --transition-slow: 0.5s ease-in-out;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --max-width: 1200px;
}

/* --- RESET & GLOBAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: #fff;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height var(--transition-fast);
}

header.scrolled .navbar {
  height: 60px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-color);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width var(--transition-fast);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary-color);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 77, 122, 0.6), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1540541338287-41700207dee6?q=80&w=2670&auto=format&fit=crop') center/cover no-repeat;
  color: #fff;
  padding-top: 80px;
}

.hero-content {
  max-width: 600px;
  z-index: 2;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  flex: 1;
}

.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 50px;
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-form-wrapper {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 400px;
  margin-top: 150px;
  z-index: 2;
  animation: fadeInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
  opacity: 0;
  flex-shrink: 0;
}

.hero-form-title {
  color: var(--primary-color);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.hero-form-wrapper .btn {
  width: 100%;
  margin-top: 10px;
}

/* --- OVERVIEW SECTION --- */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.overview-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 3px solid var(--accent-color);
  transition: transform var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 500;
}

.overview-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.overview-image img {
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-slow);
}

.overview-image:hover img {
  transform: scale(1.05);
}

/* --- LOCATION SECTION --- */
.location-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.location-map {
  width: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.location-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.loc-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.loc-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.loc-text h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.loc-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- PRODUCTS/SUBDIVISIONS SECTION --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.product-features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e8f0;
}

.feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.feat i {
  color: var(--accent-color);
}

/* --- AMENITIES SECTION --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.amenity-card {
  background: var(--bg-white);
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.amenity-card:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-5px);
}

.amenity-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.amenity-card:hover .amenity-icon,
.amenity-card:hover h4,
.amenity-card:hover p {
  color: #fff;
}

.amenity-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- CONTACT SECTION CTA --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIi8+PC9zdmc+') repeat;
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-white {
  background-color: #fff;
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* --- FOOTER (GOOGLE ADS COMPLIANT) --- */
footer {
  background-color: #1A202C;
  color: #A0AEC0;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-info {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-info i {
  color: var(--accent-color);
  margin-top: 5px;
}

.advertiser-disclaimer {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: var(--border-radius);
  border-left: 3px solid var(--accent-color);
  margin-top: 20px;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.advertiser-disclaimer strong {
  color: #fff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all var(--transition-fast);
}

.legal-links a:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

/* --- PROGRESS TIMELINE (NEW) --- */
.progress-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.progress-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 4px solid var(--bg-white);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.2);
}

.timeline-date {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.timeline-content {
  background: var(--bg-white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.timeline-content p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* VIP Badge for Monaco */
.VIP-badge {
  background: linear-gradient(135deg, #FFD700, #DAA520) !important;
  color: #1A202C !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

/* --- REASONS SECTION (NEW) --- */
.reasons-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.reasons-col {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-color);
  transition: transform var(--transition-fast);
}

.reasons-col:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.reasons-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.reasons-title i {
  color: var(--accent-color);
  font-size: 1.8rem;
}

.reasons-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #e2e8f0;
}

.reasons-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.reasons-list li i {
  color: #48BB78;
  /* Green check */
  margin-top: 5px;
  font-size: 1.2rem;
}

.reasons-list li div strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.reasons-list li div span {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- LEGAL BANNER (NEW) --- */
.legal-banner {
  background: linear-gradient(135deg, #1A202C, var(--primary-color));
  border-radius: var(--border-radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.legal-banner::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
}

.legal-banner-icon {
  font-size: 4rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.legal-banner-content h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.legal-banner-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 800px;
}

/* --- ANIMATIONS & UTILS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate(30px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-form-wrapper {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 30px;
    width: 100%;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards;
  }

  .hero {
    height: auto;
    padding: 150px 0 80px;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .overview-image {
    order: -1;
  }

  .reasons-wrapper {
    grid-template-columns: 1fr;
  }

  .legal-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .progress-timeline::before {
    left: 15px;
  }

  .timeline-dot {
    left: 6px;
  }

  .timeline-item {
    padding-left: 45px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 30px;
    transition: left var(--transition-fast);
    box-shadow: var(--shadow-md);
  }

  header.scrolled .nav-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li a {
    font-size: 1.2rem;
  }

  .nav-right .btn {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .products-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .overview-stats {
    grid-template-columns: 1fr;
  }

  .location-features {
    grid-template-columns: 1fr;
  }

  .product-img {
    height: 200px;
  }
}