/* ============================================
   MAJESTIQUE SWAPNANGAN DHAYARI - Premium Styles
   ============================================ */

:root {
  --primary: #0c2340;
  --primary-light: #1a3a5c;
  --accent: #c9a962;
  --accent-light: #dfc88a;
  --accent-dark: #a88b4a;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --soft-bg: #f0f2f5;
  --text: #2c3e50;
  --text-light: #5a6a7a;
  --text-muted: #8899a8;
  --shadow-sm: 0 2px 8px rgba(12, 35, 64, 0.08);
  --shadow-md: 0 8px 30px rgba(12, 35, 64, 0.12);
  --shadow-lg: 0 20px 60px rgba(12, 35, 64, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-numeric: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --header-height: 80px;
}

/* Clean, readable numerals for prices, stats & data */
.price-value,
.price-cell,
.badge-number,
.why-number,
.stat-number,
.stat-plus,
.pricing-table tbody td,
.detail-value,
.offer-content h3,
.contact-card a[href^="tel"],
.footer-contact a[href^="tel"],
.cta-actions a[href^="tel"],
.rera-banner p {
  font-family: var(--font-numeric);
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.02em;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Spark Canvas */
#sparkCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(12, 35, 64, 0.45);
  backdrop-filter: blur(10px);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(12, 35, 64, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.header.scrolled .nav-link {
  color: var(--white);
}

.header.scrolled .logo-text strong,
.header.scrolled .logo-text small {
  color: var(--white);
}

.header.scrolled .nav-toggle span {
  background: var(--white);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.logo-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(12, 35, 64, 0.18);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.logo-text small {
  font-size: 0.7rem;
  color: var(--accent-light);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition);
  transform: translateX(-50%);
}

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

.nav-link:hover {
  color: var(--accent-light);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary) !important;
  font-weight: 600;
  margin-left: 8px;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 98, 0.5);
  color: var(--primary) !important;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 35, 64, 0.85) 0%,
    rgba(12, 35, 64, 0.5) 50%,
    rgba(12, 35, 64, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 8px 20px;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
}

.price-label {
  font-size: 0.9rem;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 2px 20px rgba(201, 169, 98, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* Hero Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide:not(.active) .animate-fade-up {
  animation: none;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .animate-fade-up {
  animation: fadeUp 0.8s ease forwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-gold {
  background: var(--white);
  color: var(--primary);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ============================================
   RERA BANNER
   ============================================ */
.rera-banner {
  background: var(--primary);
  padding: 12px 0;
  text-align: center;
}

.rera-banner p {
  color: var(--accent-light);
  font-size: 0.875rem;
}

.rera-banner strong {
  color: var(--white);
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light .section-title,
.section-header.light .section-desc {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.section-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.section-action-primary {
  /* background: linear-gradient(135deg, var(--accent), var(--accent-dark)); */
  background: yellow;
  color: var(--primary);
}

.section-action-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.section-action-secondary {
  /* background: var(--primary); */
  background: yellow;
  /* color: var(--white); */
  color: var(--primary);
  border: 1px solid rgba(12, 35, 64, 0.15);
}

.section-action-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Reveal Animations */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--accent-light);
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.about-features {
  margin: 28px 0;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-weight: 500;
  color: var(--primary);
}

.feature-icon {
  color: var(--accent);
  font-size: 0.8rem;
}

.about .btn-primary {
  margin-top: 8px;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.highlights {
  position: relative;
  overflow: hidden;
}

.highlights-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.highlights-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.92), rgba(12, 35, 64, 0.85));
}

.highlights .container {
  position: relative;
  z-index: 2;
}

.highlights .section-action-secondary {
  border-color: rgba(255, 255, 255, 0.2);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  border-color: var(--accent);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  background: var(--soft-bg);
}

.offer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.offer-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.offer-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.pricing-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 20px 24px;
  text-align: left;
}

.pricing-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--soft-bg);
  transition: background var(--transition);
}

.pricing-table tbody tr:hover {
  background: rgba(201, 169, 98, 0.08);
}

.config-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.config-badge.config-3 {
  background: var(--accent);
  color: var(--primary);
}

.price-cell {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.table-btn {
  display: inline-block;
  padding: 8px 20px;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
}

.table-btn:hover {
  background: var(--accent);
  color: var(--primary);
}

.project-details {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.project-details h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detail-item {
  padding: 16px;
  background: var(--soft-bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.detail-value {
  font-weight: 600;
  color: var(--primary);
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities {
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.amenity-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.amenity-image {
  height: 220px;
  overflow: hidden;
  background: var(--soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-image img {
  transform: scale(1.05);
}

.amenity-content {
  padding: 24px;
}

.amenity-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.amenity-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.additional-amenities {
  text-align: center;
}

.additional-amenities h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.amenity-tags span {
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all var(--transition);
}

.amenity-tags span:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-hero {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.9), rgba(12, 35, 64, 0.7));
}

.location-hero .container {
  position: relative;
  z-index: 2;
}

.location-content {
  padding: 60px 24px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.location-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.location-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.location-card ul li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid var(--soft-bg);
}

.location-card ul li:last-child {
  border-bottom: none;
}

.location-card p {
  color: var(--text-light);
}

.nearby-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--primary);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.nearby-col h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nearby-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 16px 0 8px;
}

.nearby-col ul li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.85);
}

.nearby-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--accent-light);
  font-style: italic;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
  background: var(--soft-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 12px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   DEVELOPER SECTION
   ============================================ */
.developer {
  background: var(--white);
}

.developer-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.developer-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.developer-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.developer-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-plus {
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-video {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonial-video:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--primary);
  cursor: pointer;
  overflow: hidden;
}

.video-embed.is-playing {
  cursor: default;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity var(--transition);
}

.video-embed:hover .video-thumb {
  transform: scale(1.04);
}

.video-embed.is-playing .video-thumb,
.video-embed.is-playing .video-play-btn {
  display: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 2;
}

.video-play-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.video-embed:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  padding: 18px 20px;
  line-height: 1.45;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: var(--soft-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(12, 35, 64, 0.08);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(12, 35, 64, 0.9));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 35, 64, 0.95);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: var(--accent);
  color: var(--primary);
}

#lightboxImg {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

#lightboxCaption {
  color: var(--white);
  margin-top: 16px;
  font-size: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.92), rgba(12, 35, 64, 0.85));
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.cta-content {
  text-align: left;
}

.cta-content .section-tag {
  color: var(--accent-light);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 32px;
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cta-benefits li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.cta-offer {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.register-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.register-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.register-form-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(201, 169, 98, 0.15);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.register-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.register-form-header p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.register-form .form-group {
  margin-bottom: 18px;
}

.register-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 8px;
}

.register-form input,
.register-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--off-white);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.register-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.register-form input:focus,
.register-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.15);
}

.register-form input::placeholder,
.register-form textarea::placeholder {
  color: var(--text-muted);
}

.register-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-align: center;
}

.form-success {
  color: #1e8449;
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-align: center;
}

.register-submit {
  width: 100%;
  margin-top: 8px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px;
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.contact-card p,
.contact-card a {
  color: rgba(255, 255, 255, 0.9);
}

.contact-card a:hover {
  color: var(--accent-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul li {
  padding: 6px 0;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-disclaimer {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.privacy-page {
  background: var(--off-white);
}

.privacy-page .header {
  position: sticky;
}

.privacy-nav {
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  flex-direction: row;
  box-shadow: none;
}

.privacy-main {
  padding-top: 0;
}

.privacy-hero {
  padding: 90px 0 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
}

.privacy-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.05;
  margin-top: 10px;
}

.privacy-hero p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 12px;
}

.privacy-container {
  max-width: 860px;
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.privacy-container h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--primary);
  margin: 30px 0 10px;
}

.privacy-container p {
  color: var(--text-light);
  margin-bottom: 14px;
}

.privacy-container a {
  color: var(--accent-dark);
  font-weight: 600;
}

.privacy-note {
  padding-top: 18px;
  border-top: 1px solid rgba(12, 35, 64, 0.1);
  font-size: 0.95rem;
}

.visitor-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.visitor-counter-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.visitor-counter strong {
  font-family: var(--font-numeric);
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--accent-light);
  font-size: 1.05rem;
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  position: relative;
}

.float-btn svg {
  width: 26px;
  height: 26px;
}

.float-call {
  background: var(--primary);
  color: var(--white);
}

.float-call:hover {
  background: var(--primary-light);
  transform: scale(1.1);
}

.float-whatsapp {
  background: #25d366;
  color: var(--white);
  animation: pulse 2s infinite;
}

.float-whatsapp:hover {
  background: #128c7e;
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .developer-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .developer-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }

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

  .privacy-nav {
    position: static;
    width: auto;
    height: auto;
    max-width: none;
    background: transparent;
    flex-direction: row;
    justify-content: flex-end;
    box-shadow: none;
  }

  .nav-link {
    color: var(--white);
    font-size: 1rem;
    padding: 12px 24px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: 300px;
  }

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

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

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

  .nearby-section {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .offer-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-content {
    text-align: center;
  }

  .cta-benefits {
    align-items: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .privacy-container {
    padding: 30px 24px;
  }

  .hero-controls {
    bottom: 80px;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .highlights-grid,
  .why-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-quick-actions {
    flex-direction: column;
  }

  .section-action-btn {
    width: 100%;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}
