:root {
  --primary: #c41f24;
  --primary-dark: #a0161b;
  --primary-light: #e63946;
  --cream: #fbf6eb;
  --sand: #f1e7d6;
  --charcoal: #1f1f1f;
  --text: #4b4b4b;
  --muted: #7b7b7b;
  --border: rgba(32, 32, 32, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, #c41f24 0%, #a0161b 50%, #8b1217 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}

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

/* Ensure all elements respect viewport width */
html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* Touch-friendly improvements */
button,
a.btn,
.cp-enquire,
.mobile-menu-toggle,
.slide-nav,
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Prevent text size adjustment on iOS */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px; /* Base font size */
}

/* Handle text wrapping on zoom for mobile */
h1, h2, h3, h4, h5, h6, p, span, a, li, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* Prevent fixed width elements from breaking on zoom */
table, pre, code {
  max-width: 100%;
  overflow-x: auto;
  word-wrap: break-word;
}

/* Zoom-responsive container */
body {
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 100vw;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Ensure all containers fit viewport */
* {
  max-width: 100%;
}

/* Prevent overflow on zoom for mobile */
main,
section,
.container,
.cp-info-panels,
.featured-slideshow {
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

/* Ensure main element doesn't create its own scrollbar */
main,
#main-content {
  overflow-y: visible !important;
  overflow-x: hidden;
  height: auto;
  max-height: none;
}

/* Prevent popup and modal elements from creating scrollbars when inactive */
.popup-modal:not(.active),
.virtual-tour-modal:not(.active) {
  overflow: hidden !important;
  width: 0 !important;
  height: 0 !important;
  max-width: 0 !important;
  max-height: 0 !important;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Ensure all icons scale with zoom */
i,
svg {
  max-width: 100%;
  height: auto;
}

/* Prevent navigation overflow on zoom */
.cp-topbar,
.cp-nav {
  overflow: visible;
}

.cp-topbar > *,
.cp-nav > * {
  min-width: 0;
  max-width: 100%;
}

body {
  font-family: 'Raleway', 'Roboto', sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.7;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Smooth fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Initial state for scroll animations */
main > section,
.home-card,
.amenity-card,
.cp-info-panels .panel,
.cp-callouts article,
.cp-awards .award-grid article,
.cp-legal article,
.cp-testimonials blockquote,
.cp-gallery .download-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

main > section.fade-in-up,
.home-card.fade-in-up,
.amenity-card.fade-in-up,
.cp-info-panels .panel.fade-in-up,
.cp-callouts article.fade-in-up,
.cp-awards .award-grid article.fade-in-up,
.cp-legal article.fade-in-up,
.cp-testimonials blockquote.fade-in-up,
.cp-gallery .download-card.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Responsive video and iframe */
video,
iframe {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 0.85rem) clamp(1.5rem, 4vw, 1.75rem);
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  text-transform: uppercase;
  min-height: 44px; /* Touch-friendly minimum */
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn.primary {
  background: var(--gradient-primary);
  color: #fff;
  border-color: var(--primary-dark);
  box-shadow: 0 8px 24px rgba(196, 31, 36, 0.4), 0 4px 8px rgba(196, 31, 36, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(196, 31, 36, 0.5), 0 6px 12px rgba(196, 31, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn.primary:hover::after,
.btn.primary:focus-visible::after {
  opacity: 1;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(196, 31, 36, 0.3);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(196, 31, 36, 0.15);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(196, 31, 36, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(196, 31, 36, 0.25);
}

main > section {
  padding: 4rem 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Global Section Heading Styles */
main > section:not(.cp-project-details) > h2,
main > section:not(.cp-project-details) .content > h2,
main > section:not(.cp-project-details) h2:first-child {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  margin-top: 0;
  text-align: center;
  position: relative;
  padding-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

main > section:not(.cp-project-details) > h2::after,
main > section:not(.cp-project-details) .content > h2::after,
main > section:not(.cp-project-details) h2:first-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(196, 31, 36, 0.3);
}

/* Section-specific heading overrides */
.cp-overview .content > h2,
.cp-clubhouse .club-content > h2 {
  text-align: left;
}

.cp-overview .content > h2::after,
.cp-clubhouse .club-content > h2::after {
  left: 0;
  transform: none;
}

main > section.cp-project-details {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.cp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(57, 57, 57, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .cp-header {
    overflow: visible !important;
  }
}

.cp-topbar {
  background: #fbf5e7;
  padding: clamp(0.5rem, 1vw, 0.75rem) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: #6a6a6a;
  border-bottom: 1px solid rgba(57, 57, 57, 0.05);
  flex-wrap: wrap;
  gap: 0.5rem;
  border-radius: 12px;
  margin: 0.5rem clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .cp-topbar {
    flex-direction: column;
    text-align: center;
    padding: 0.5rem 0;
    gap: 0.75rem;
  }
  
  .cp-topbar p {
    font-size: clamp(0.7rem, 2.5vw, 0.8rem);
    line-height: 1.4;
    padding: 0 0.5rem;
    margin: 0;
  }
  
  .cp-top-actions {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .cp-top-actions a {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(196, 31, 36, 0.15);
    transition: all 0.3s ease;
    min-height: 48px;
  }
  
  .cp-top-actions a:active {
    transform: scale(0.98);
  }
  
  .cp-top-actions a:hover,
  .cp-top-actions a:focus {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(196, 31, 36, 0.3);
    transform: translateY(-2px);
  }
  
  .cp-top-actions a i {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: inherit;
    flex-shrink: 0;
    width: auto;
    height: auto;
  }
  
  .cp-top-actions a:hover i,
  .cp-top-actions a:focus i {
    color: inherit;
  }
}

.cp-topbar,
.cp-nav {
  width: min(1200px, 92vw);
  max-width: 100%;
  margin: 0 auto;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  padding-right: clamp(1rem, 2vw, 1.5rem);
  box-sizing: border-box;
}

.cp-topbar p {
  margin: 0;
  font-weight: 700;
  flex-shrink: 1;
  min-width: 0;
}

.cp-top-actions {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-weight: 600;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cp-top-actions a {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  color: #3c3c3c;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  font-size: inherit;
}

.cp-top-actions a:hover {
  color: var(--primary);
}

.cp-top-actions i {
  color: var(--primary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  flex-shrink: 0;
  width: auto;
  height: auto;
}

.cp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  gap: clamp(1rem, 2vw, 2rem);
  flex-wrap: wrap;
  min-height: 0;
}

.cp-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
}

.cp-logo img {
  width: clamp(120px, 15vw, 180px);
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.cp-nav nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

@media (max-width: 960px) {
  .cp-nav {
    overflow: visible !important;
  }
  
  .cp-nav nav {
    display: none !important;
  }
  
  .cp-nav nav.active {
    display: block !important;
  }
}

.cp-nav nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
  flex-wrap: wrap;
}

.cp-nav nav ul li {
  margin: 0;
  flex-shrink: 0;
}

.cp-nav nav ul li a {
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  position: relative;
  padding: clamp(0.4rem, 1vw, 0.5rem) 0;
  display: block;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.cp-nav nav ul li a:hover {
  color: var(--primary);
}

.cp-nav nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.cp-nav nav ul li a:hover::after {
  width: 100%;
}

.cp-enquire {
  background: var(--gradient-primary);
  color: #fff;
  padding: clamp(0.65rem, 1.5vw, 0.85rem) clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(196, 31, 36, 0.3);
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cp-enquire::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cp-enquire:hover,
.cp-enquire:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(196, 31, 36, 0.4);
}

.cp-enquire:hover::before {
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary) !important;
  border: none !important;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #fff !important;
  cursor: pointer;
  padding: 0.75rem;
  min-width: 48px;
  min-height: 48px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(196, 31, 36, 0.3);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background-color: var(--primary-dark) !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(196, 31, 36, 0.4);
  outline: none;
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
  background-color: var(--primary-dark) !important;
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] {
  background-color: var(--primary-dark) !important;
}

.mobile-menu-toggle i {
  font-size: 1.5rem !important;
  display: block !important;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #fff !important;
  width: auto;
  height: auto;
}

.mobile-menu-toggle i.fa-bars {
  display: block !important;
}

.mobile-menu-toggle i.fa-times {
  display: none !important;
}

.mobile-menu-toggle[aria-expanded="true"] i.fa-bars {
  display: none !important;
}

.mobile-menu-toggle[aria-expanded="true"] i.fa-times {
  display: block !important;
}

@media (max-width: 960px) {
  .mobile-menu-toggle {
    display: flex !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .mobile-menu-toggle i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
.hero-spotlight {
  position: relative;
  min-height: 600px;
  padding: 0;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a url('assets/Amodh CP Booklet/Amodh Elevations/Amodh 1.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-spotlight {
    background-attachment: scroll;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .hero-spotlight {
    min-height: 90vh;
    min-height: 90dvh;
    background-size: cover;
    background-position: center 20%;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 3rem;
  color: #fff;
  min-height: 600px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem clamp(1rem, 4vw, 1.5rem) 2.5rem;
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1.5rem clamp(0.75rem, 3vw, 1rem) 2rem;
    gap: 1.25rem;
  }
}

.hero-spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.5) 100%);
  animation: fadeIn 1s ease-out;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-spotlight::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.45) 100%);
  }
}

@media (max-width: 480px) {
  .hero-spotlight::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-copy p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  padding: 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.8s ease-out 1s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-panel .price-range {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-panel .value {
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-panel .meta {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-panel .meta li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.status-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.status-card:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cp-info-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
  min-width: 0;
  overflow-x: hidden;
}

.cp-info-panels .panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
}

.cp-info-panels .panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cp-info-panels .panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 31, 36, 0.2);
}

.cp-info-panels .panel:hover::before {
  transform: scaleX(1);
}

.cp-info-panels .panel a {
  color: var(--primary);
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.featured-slideshow {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 600px;
  overflow: hidden;
  margin: 2rem auto;
  padding: 0;
  min-width: 0;
  box-sizing: border-box;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 600px;
}

.featured-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  text-align: center;
  color: #fff;
}

.slide-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #c41f24;
  text-shadow: 
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 20px rgba(255, 255, 255, 0.7),
    2px 2px 8px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.feature-tag {
  background: rgba(211, 47, 47, 0.9);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: inline-block;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  width: clamp(44px, 7vw, 56px);
  height: clamp(44px, 7vw, 56px);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.slide-nav:hover {
  background: rgba(196, 31, 36, 0.95);
  border-color: rgba(196, 31, 36, 1);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 24px rgba(196, 31, 36, 0.4);
}

.slide-nav.prev {
  left: 2rem;
}

.slide-nav.next {
  right: 2rem;
}

.slide-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slide-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slide-indicators .indicator.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 36px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(196, 31, 36, 0.5);
}

.slide-indicators .indicator:hover {
  background: rgba(196, 31, 36, 0.8);
  border-color: rgba(196, 31, 36, 0.8);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  main > section {
    padding: 2rem 0;
  }

  main > section > h2,
  main > section .content > h2,
  main > section h2:first-child {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }

  main > section > h2::after,
  main > section .content > h2::after,
  main > section h2:first-child::after {
    width: 60px;
    height: 3px;
  }

  .cp-overview .content > h2,
  .cp-clubhouse .club-content > h2 {
    font-size: 2rem;
  }

  .featured-slideshow {
    min-height: 500px;
    margin: 1.5rem 0;
  }

  .slideshow-container {
    height: 500px;
  }

  .slide-content {
    padding: 2rem 1.5rem;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide-nav {
    width: 40px;
    height: 40px;
  }

  .slide-nav.prev {
    left: 1rem;
  }

  .slide-nav.next {
    right: 1rem;
  }

  .slide-indicators {
    bottom: 1rem;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
}

.cp-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .cp-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cp-overview .stat-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    text-align: center;
  }
}

.cp-overview .content > h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cp-overview .media {
  position: relative;
}

.cp-overview .stat-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  padding: 1.25rem 2rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(196, 31, 36, 0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.cp-overview .stat-badge:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--primary);
}

.cp-overview .stat-badge strong {
  color: var(--primary);
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  margin-top: 0.25rem;
}

.cp-callouts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.cp-callouts article {
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cp-callouts article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cp-callouts article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 31, 36, 0.3);
}

.cp-callouts article:hover::before {
  transform: scaleX(1);
}

.cp-day {
  text-align: center;
}

.cp-day .timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cp-day .timeline li {
  padding: 1.5rem;
  border: 2px dashed var(--border);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  transition: all 0.3s ease;
  position: relative;
}

.cp-day .timeline li:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.cp-day .timeline li span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.cp-homes .home-grid-wrapper {
  position: relative;
  width: 100%;
}

.cp-homes .home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

/* Scroll buttons - hidden on desktop */
.home-scroll-btn {
  display: none;
}

/* Desktop: Keep auto-fit layout (unchanged) */
@media (min-width: 769px) {
  .cp-homes .home-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
  }
  
  .home-scroll-btn {
    display: none !important;
  }
}

.cp-homes article {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.cp-homes article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 31, 36, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cp-homes article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 31, 36, 0.3);
}

.cp-homes article:hover::before {
  opacity: 1;
}

.home-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: clamp(0.6rem, 2vw, 0.65rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 999px;
  background: linear-gradient(135deg, #fffbf5, #ffe4d9);
  border: 1px solid rgba(196, 31, 36, 0.4);
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(196, 31, 36, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  min-height: 44px;
}

.home-card a::after {
  content: '';
  display: none;
}

.home-card a:hover,
.home-card a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(196, 31, 36, 0.2);
}

.cp-amenities {
  padding: 2.5rem 0;
  background: #fff;
}

.cp-amenities h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--charcoal);
  text-align: center;
}

.amenity-tabs {
  width: 100%;
}

.tab-nav {
  display: flex;
  list-style: none;
  margin: 0 0 2.5rem 0;
  padding: 0;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.tab-nav li {
  margin: 0;
  padding: 0;
}

.tab-link {
  display: inline-block;
  padding: 1rem 2rem;
  color: #6a6a6a;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

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

.tab-nav li.active .tab-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.cp-amenities .amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

.cp-amenities .amenity-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.cp-amenities .amenity-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(196, 31, 36, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cp-amenities .amenity-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 31, 36, 0.3);
}

.cp-amenities .amenity-card:hover::after {
  opacity: 1;
}

.cp-amenities .amenity-card img,
.cp-amenities .amenity-card i,
.cp-amenities .amenity-card svg {
  transition: transform 0.3s ease;
}

.cp-amenities .amenity-card:hover img,
.cp-amenities .amenity-card:hover i,
.cp-amenities .amenity-card:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.cp-amenities .amenity-card img,
.cp-amenities .amenity-card i,
.cp-amenities .amenity-card svg {
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
  filter: brightness(0) saturate(100%);
  opacity: 0.9;
}

/* Make SVG icons black outline */
.cp-amenities .amenity-card svg {
  stroke: #1f1f1f !important;
  fill: none !important;
}

/* Make image icons black outline style */
.cp-amenities .amenity-card img {
  filter: brightness(0) saturate(100%);
  opacity: 0.85;
}

/* Apply black outline style to content icons across the site */
.cp-info-panels .panel i,
.cp-callouts article i,
.cp-features article i,
.cp-gallery .download-card i {
  color: #1f1f1f;
  -webkit-text-stroke: none;
}

/* Keep contact and topbar icons with primary color for visibility */
.cp-contact aside ul li i {
  color: var(--primary);
}

.cp-top-actions i {
  color: var(--primary);
}

/* Override for UI icons that should stay colored (navigation, buttons, etc.) */
.popup-close,
.lightbox-close,
.slide-nav,
.mobile-menu-toggle i,
.popup-promises .promise-icon i,
.btn i,
.hero-actions .btn i {
  color: inherit !important;
}

.cp-amenities .amenity-card i {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-stroke: none;
  -webkit-text-fill-color: #1f1f1f;
  paint-order: stroke fill;
}

.cp-amenities .amenity-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  margin: 0;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cp-features .feature-grid,
.cp-awards .award-grid,
.cp-legal .legal-grid,
.cp-testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.cp-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cp-features article,
.cp-legal article,
.cp-testimonials blockquote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cp-legal article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cp-legal article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 31, 36, 0.3);
}

.cp-legal article:hover::before {
  transform: scaleX(1);
}

.cp-features article i {
  font-size: 1.6rem;
  color: #1f1f1f;
  -webkit-text-stroke: none;
}

.cp-clubhouse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .cp-clubhouse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.club-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.club-media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.cp-clubhouse .club-content > h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  text-align: left;
  position: relative;
  padding-bottom: 1rem;
}

.cp-clubhouse .club-content > h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.cp-clubhouse ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.cp-project-details {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
  margin: 2rem 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.project-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
  background-image: url('assets/Amodh CP Booklet/Amodh Elevations/Amodh 1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(0);
  will-change: transform;
  background-color: #1a1a1a; /* Fallback color */
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.project-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  color: #fff;
  padding: 2.5rem 2rem;
}

.project-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-bottom: 1rem;
}

.project-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  letter-spacing: 0.02em;
}

.project-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: #fff;
  margin: 0;
  opacity: 0.95;
}

.cp-legal {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cp-legal .legal-grid {
  margin-top: 2rem;
}

.cp-testimonials {
  text-align: center;
}

.cp-testimonials .testimonial-grid {
  margin-top: 2rem;
}

.cp-awards {
  text-align: center;
}

.cp-awards .award-grid {
  margin-top: 2rem;
}

.cp-videos {
  text-align: center;
}

.cp-videos .video-grid {
  margin-top: 2rem;
}

.cp-gallery {
  text-align: center;
}

.cp-gallery .gallery-grid {
  margin-top: 2rem;
}

.cp-gallery .gallery-grid figure {
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: var(--shadow-md);
}

.cp-gallery .gallery-grid figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.cp-gallery .gallery-grid figure:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cp-gallery .gallery-grid figure:hover::before {
  opacity: 1;
}

.cp-gallery .gallery-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cp-gallery .gallery-grid figure:hover img {
  transform: scale(1.1);
}

.cp-gallery .gallery-downloads {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.cp-gallery .gallery-downloads h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.cp-gallery .download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.cp-gallery .download-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cp-gallery .download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cp-gallery .download-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 31, 36, 0.3);
}

.cp-gallery .download-card:hover::before {
  transform: scaleX(1);
}

.cp-gallery .download-card i {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1f1f1f;
  margin-bottom: 1rem;
  display: block;
  -webkit-text-stroke: none;
}

.cp-gallery .download-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-weight: 600;
}

.cp-gallery .download-card .btn {
  width: 100%;
  justify-content: center;
}

/* Remove red cross from download cards */
.cp-gallery .download-card::after {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
}

.cp-gallery .download-card:nth-child(4),
.cp-gallery .download-card:nth-of-type(4) {
  position: relative;
}

.cp-gallery .download-card:nth-child(4)::after,
.cp-gallery .download-card:nth-of-type(4)::after,
.cp-gallery .download-card:nth-child(4)::before,
.cp-gallery .download-card:nth-of-type(4)::before {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
  border: none !important;
}

.cp-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.cp-videos article {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.video-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-height: 200px;
  border: 2px solid transparent;
}

.video-card:hover {
  border-color: rgba(196, 31, 36, 0.3);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  opacity: 0.6;
}

.play-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
}

.play-badge i {
  color: #ff4b51;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.video-card iframe,
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
  object-fit: cover;
}

.video-card video {
  display: none;
}

.video-card.local-video {
  position: relative;
}

.video-card.local-video video {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 1;
}

.video-card.local-video.playing video {
  z-index: 2;
}

.video-card.local-video img {
  display: none;
}

.video-card.local-video .play-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
}

.video-card.local-video::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.video-card.playing img,
.video-card.playing .play-badge,
.video-card.playing::after {
  opacity: 0;
}

.video-card.local-video.playing .play-badge {
  opacity: 0;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(0,0,0,0.2);
}

.cp-testimonials blockquote {
  font-style: italic;
  position: relative;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
}

.cp-testimonials blockquote:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cp-testimonials blockquote::before {
  content: '\201C';
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 10px;
  color: var(--sand);
}

.cp-awards .award-grid article {
  background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cp-awards .award-grid article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cp-awards .award-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 31, 36, 0.3);
}

.cp-awards .award-grid article:hover::before {
  transform: scaleX(1);
}

.cp-awards .award-grid article strong {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.cp-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .cp-contact {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cp-contact .form-wrap {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  background: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cp-contact .form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.cp-contact form {
  display: grid;
  gap: 1rem;
}

.cp-contact form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}

.cp-contact input,
.cp-contact textarea,
.newsletter input,
.cp-contact select {
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font: inherit;
  transition: all 0.3s ease;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

/* Prevent zoom on iOS input focus */
@media (max-width: 768px) {
  .cp-contact input[type="text"],
  .cp-contact input[type="email"],
  .cp-contact input[type="tel"],
  .cp-contact textarea,
  .cp-contact select {
    font-size: 16px !important;
  }
}

.cp-contact input:focus,
.cp-contact textarea:focus,
.newsletter input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(196, 31, 36, 0.1);
  transform: translateY(-2px);
}

.cp-contact input:hover,
.cp-contact textarea:hover {
  border-color: rgba(196, 31, 36, 0.3);
}

.cp-contact aside ul {
  list-style: none;
  margin: 1rem 0;
  display: grid;
  gap: 0.5rem;
}

.cp-contact aside ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cp-contact aside ul li i {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--primary);
  flex-shrink: 0;
  width: auto;
  height: auto;
}

.cp-contact iframe {
  width: 100%;
  border: 0;
  border-radius: 16px;
  height: 240px;
}

.cp-footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--primary);
}

.cp-footer .footer-top {
  width: min(1200px, 92vw);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cp-footer h4 {
  margin-bottom: 0.75rem;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.cp-footer ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
}

.newsletter button {
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
}

.cp-footer .disclaimer,
.cp-footer .copyright {
  width: min(1200px, 92vw);
  margin: 0 auto;
  font-size: 0.85rem;
  text-align: center;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  color: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Popup Modal Styles */
.popup-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  pointer-events: none;
}

.popup-modal.active {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 10000 !important;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  pointer-events: auto;
}

body.popup-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.popup-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.popup-modal.active .popup-container {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff !important;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  font-size: 1.75rem !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease;
  z-index: 10004 !important;
  line-height: 1 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  pointer-events: auto !important;
}

.popup-close:hover {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(196, 31, 36, 0.3) !important;
}

.popup-close:active {
  transform: scale(0.95);
}

.popup-content-wrapper {
  display: flex;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: visible;
  max-height: 90vh;
}

.popup-promises {
  flex: 0 0 40%;
  background: #d32f2f;
  border-right: 1px solid #e0e0e0;
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  min-height: 0;
}

.popup-logo {
  margin-bottom: 1rem;
  text-align: center;
}

.popup-logo img {
  max-width: 180px;
  height: auto;
  margin-bottom: 0.5rem;
}

.popup-logo .logo-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

.we-promise-section {
  width: 100%;
  margin: 1rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.we-promise-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-align: center;
  width: 100%;
}

.promise-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.popup-promises h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: left;
  width: 100%;
}

.promise-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  background: transparent;
  border-radius: 0;
  backdrop-filter: none;
}

.we-promise-section .promise-item {
  justify-content: flex-start;
  padding: 0.5rem 0;
}

.promise-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.we-promise-section .promise-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.promise-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.we-promise-section .promise-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.promise-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  text-align: left;
}

.we-promise-section .promise-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.promise-text h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.popup-form-section {
  flex: 1;
  padding: 1rem 1.25rem 1.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 0 24px 24px 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.popup-form-section form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.popup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.popup-header h2 {
  color: var(--charcoal);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.popup-header p {
  color: var(--secondary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin: 0;
}

/* Promo Banner Styles */
.popup-promises .popup-promo-banner {
  background: #f5f5f5;
  border-radius: 12px;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}

.promo-banner-top {
  background: #8b1a1f;
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px 12px 0 0;
}

.popup-promises .promo-content {
  padding: 1.25rem;
  background: #f5f5f5;
}

.promo-content {
  padding: 1.5rem;
  background: #f5f5f5;
}

.promo-content h3 {
  color: var(--charcoal);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.promo-subtitle {
  color: var(--charcoal);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.promo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.promo-features li i {
  color: #d32f2f;
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

.rotating-icon {
  animation: iconPulse 2s ease-in-out infinite;
  display: inline-block;
  transition: transform 0.3s ease;
}

.rotating-icon:hover {
  transform: scale(1.2);
  animation-play-state: paused;
}

.promo-features li:nth-child(1) .rotating-icon {
  animation-delay: 0s;
}

.promo-features li:nth-child(2) .rotating-icon {
  animation-delay: 0.3s;
}

.promo-features li:nth-child(3) .rotating-icon {
  animation-delay: 0.6s;
}

.promo-features li:nth-child(4) .rotating-icon {
  animation-delay: 0.9s;
}

.promo-features li:nth-child(5) .rotating-icon {
  animation-delay: 1.2s;
}

.promo-features li:nth-child(6) .rotating-icon {
  animation-delay: 1.5s;
}

.promo-features li:nth-child(7) .rotating-icon {
  animation-delay: 1.8s;
}

.spot-booking-box p:nth-child(1) .rotating-icon {
  animation-delay: 0s;
}

.spot-booking-box p:nth-child(2) .rotating-icon {
  animation-delay: 0.4s;
}

.spot-booking-box p:nth-child(3) .rotating-icon {
  animation-delay: 0.8s;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
}

.spot-booking-box {
  background: #a0161b;
  border: 2px dashed #fff;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.spot-booking-box p {
  color: #fff;
  margin: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spot-booking-box p:first-child {
  margin-top: 0;
}

.spot-booking-box p:last-child {
  margin-bottom: 0;
}

.spot-booking-box i {
  color: #fff;
  font-size: 1rem;
}

.promo-pricing {
  text-align: center;
  margin-bottom: 1.5rem;
}

.promo-pricing p:first-child {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.price-range {
  color: var(--charcoal);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.btn-request-brochure {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #d32f2f 0%, #8b1a1f 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-request-brochure:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
  background: linear-gradient(135deg, #e53935 0%, #a0161b 100%);
}

/* Contact Favicons */
.popup-contact-favicons {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.contact-favicon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d32f2f;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.contact-favicon:hover {
  background: #d32f2f;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.contact-favicon i {
  margin: 0;
}

.popup-header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 24px 24px 0 0;
  flex-shrink: 0;
}

.popup-logo-small {
  display: none;
}

.popup-logo-small img {
  max-width: 80px;
  height: auto;
}

.logo-tagline-small {
  color: var(--charcoal);
  font-size: 0.7rem;
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

.popup-header-title {
  width: 100%;
  text-align: center;
}

.popup-header-title h2 {
  margin: 0;
  color: #1f1f1f;
  font-size: 1.75rem;
  font-weight: 700;
}

.best-offers-highlight {
  color: #d32f2f;
  font-weight: 700;
}

.popup-form-section .form-group {
  margin-bottom: 1rem;
}

.popup-form-section .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
}

.popup-form-section .form-group .optional {
  color: var(--secondary);
  font-weight: 400;
  font-size: 0.85rem;
}

.popup-form-section .form-group input,
.popup-form-section .form-group select,
.popup-form-section .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
  color: var(--charcoal);
  box-sizing: border-box;
}

.popup-form-section .form-group input:focus,
.popup-form-section .form-group select:focus,
.popup-form-section .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 31, 36, 0.1);
}

.phone-group {
  margin-bottom: 1.5rem;
}

.phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.country-code {
  flex: 0 0 140px;
  padding: 0.875rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fff;
  color: var(--charcoal);
  cursor: pointer;
}

.phone-input-wrapper input {
  flex: 1;
}

.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.popup-content .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.popup-form-section .form-actions {
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  flex-shrink: 0;
}

.popup-form-section .form-actions .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-form-section .form-actions .btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 31, 36, 0.4);
}

.contact-info {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.contact-info p {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info i {
  color: var(--primary);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  flex-shrink: 0;
}

.popup-form-section .form-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-top: 1rem;
  margin-bottom: 0;
}

.popup-form-section .form-alert {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

.popup-form-section .form-alert.show {
  display: block;
}

.popup-success {
  text-align: center;
  padding: 2rem 1rem;
}

.popup-success .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(47, 133, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-success .success-icon i {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2f855a;
}

.popup-success h3 {
  color: var(--charcoal);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.popup-success p {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.popup-success .btn {
  width: 100%;
  max-width: 200px;
}

@media (max-width: 768px) {
  .popup-container {
    width: 95% !important;
    max-width: 550px !important;
    max-height: 90vh !important;
    height: auto !important;
    border-radius: 16px !important;
    margin: 1rem auto !important;
    flex-direction: column;
  }

  .popup-content-wrapper {
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    max-height: 85vh;
    -webkit-overflow-scrolling: touch;
  }

  .popup-promises {
    flex: 0 0 auto;
    padding: 1.5rem 1.25rem;
    min-height: auto;
    max-height: none;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
  }

  .we-promise-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
  }

  .we-promise-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .we-promise-section .promise-icon {
    width: 50px;
    height: 50px;
  }

  .we-promise-section .promise-icon i {
    font-size: 1.5rem;
  }

  .we-promise-section .promise-text {
    font-size: 1rem;
  }

  .popup-contact-favicons {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
  }

  .contact-favicon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .popup-logo {
    margin-bottom: 1.5rem;
  }

  .popup-logo img {
    max-width: 140px;
  }

  .popup-logo .logo-tagline {
    font-size: 0.8rem;
  }

  .popup-promises h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    margin-bottom: 1.25rem;
  }

  .promise-list {
    gap: 0.875rem;
  }

  .promise-item {
    padding: 0.875rem;
    gap: 0.75rem;
  }

  .promise-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }

  .promise-icon i {
    font-size: 1.25rem;
  }

  .promise-text h4 {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
  }

  .popup-form-section {
    flex: 1;
    padding: 1.25rem 1rem 1.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
    max-height: 85vh;
  }

  .popup-close {
    top: 0.75rem !important;
    right: 0.75rem !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 1.75rem !important;
    background: #fff !important;
    border: 2px solid var(--primary) !important;
    z-index: 10004 !important;
    position: absolute !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: var(--primary) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
  }
  
  .popup-close:hover,
  .popup-close:active {
    background: rgba(196, 31, 36, 0.3) !important;
    transform: scale(1.1);
  }

  .popup-header {
    margin-bottom: 1.5rem;
  }

  .popup-header h2 {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
    line-height: 1.3;
  }

  .popup-header p {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }

  .popup-promo-banner {
    margin-bottom: 1.5rem;
  }

  .promo-content {
    padding: 1.25rem;
  }

  .promo-content h3 {
    font-size: 1.25rem;
  }

  .promo-features li {
    font-size: 0.85rem;
  }

  .spot-booking-box {
    padding: 1rem;
  }

  .spot-booking-box p {
    font-size: 0.85rem;
  }

  .price-range {
    font-size: 1.25rem;
  }

  .btn-request-brochure {
    padding: 0.875rem;
    font-size: 1rem;
  }

  .popup-form-section .form-group {
    margin-bottom: 1.25rem;
  }

  .popup-form-section .form-group label {
    font-size: clamp(0.9rem, 3vw, 0.95rem);
    margin-bottom: 0.5rem;
  }

  .popup-form-section .form-group input,
  .popup-form-section .form-group select,
  .popup-form-section .form-group textarea {
    padding: 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px; /* Touch-friendly size */
    border-width: 1.5px;
  }

  .phone-input-wrapper {
    flex-direction: column;
    gap: 0.75rem;
  }

  .country-code {
    width: 100%;
    flex: 1;
    min-height: 48px;
  }

  .phone-input-wrapper input {
    width: 100%;
  }

  .checkbox-label {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .checkbox-text {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem);
    line-height: 1.5;
  }

  .popup-form-section .form-actions {
    margin-top: 1.75rem;
    margin-bottom: 1rem;
  }

  .popup-form-section .form-actions .btn {
    padding: 1rem;
    font-size: clamp(1rem, 3.5vw, 1.1rem);
    min-height: 52px; /* Extra touch-friendly size */
    font-weight: 600;
  }

  .contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .contact-info p {
    font-size: clamp(0.9rem, 3vw, 0.95rem);
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .popup-success {
    padding: 1.5rem 1rem;
  }

  .popup-success .success-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .popup-success .success-icon i {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }

  .popup-success h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }

  .popup-success p {
    font-size: clamp(0.9rem, 3vw, 0.95rem);
  }

  .popup-success .btn {
    min-height: 48px;
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .popup-container {
    width: 88% !important;
    max-width: 420px !important;
    margin: 0.75rem auto !important;
    max-height: 85vh !important;
  }
  
  .popup-promises {
    padding: 1.25rem 1rem;
    position: relative;
  }

  .popup-promises .popup-promo-banner {
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .popup-contact-favicons {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 0.75rem;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
  }

  .contact-favicon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .popup-logo img {
    max-width: 120px;
  }

  .popup-promises h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .promise-item {
    padding: 0.75rem;
    gap: 0.625rem;
  }

  .promise-icon {
    width: 40px;
    height: 40px;
  }

  .promise-icon i {
    font-size: 1.1rem;
  }

  .promise-text h4 {
    font-size: 0.95rem;
  }

  .popup-promo-banner {
    margin-bottom: 1.25rem;
  }

  .promo-content {
    padding: 1rem;
  }

  .promo-content h3 {
    font-size: 1.1rem;
  }

  .promo-subtitle {
    font-size: 0.85rem;
  }

  .promo-features li {
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }

  .promo-features li i {
    font-size: 1rem;
    width: 18px;
  }

  .spot-booking-box {
    padding: 0.875rem;
  }

  .spot-booking-box p {
    font-size: 0.8rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .price-range {
    font-size: 1.1rem;
  }

  .btn-request-brochure {
    padding: 0.875rem;
    font-size: 0.95rem;
  }

  .popup-form-section {
    padding: 1.25rem 1rem;
  }

  .popup-close {
    top: 0.5rem !important;
    right: 0.5rem !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 1.75rem !important;
    background: #fff !important;
    border: 2px solid var(--primary) !important;
    z-index: 10004 !important;
    position: absolute !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: var(--primary) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
  }

  .popup-header {
    margin-bottom: 1.25rem;
  }

  .popup-header h2 {
    font-size: 1.1rem;
  }

  .popup-form-section .form-group {
    margin-bottom: 1rem;
  }

  .popup-form-section .form-group label {
    font-size: 0.9rem;
  }

  .popup-form-section .form-group input,
  .popup-form-section .form-group select,
  .popup-form-section .form-group textarea {
    padding: 0.875rem;
    font-size: 16px;
  }

  .checkbox-text {
    font-size: 0.75rem;
  }

  .popup-form-section .form-actions {
    margin-top: 1.5rem;
  }

  .popup-form-section .form-actions .btn {
    padding: 1rem;
    font-size: 1rem;
    min-height: 50px;
  }

  .contact-info p {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .popup-promises {
    padding: 1rem 0.875rem;
  }

  .popup-logo img {
    max-width: 100px;
  }

  .popup-form-section {
    padding: 1rem 0.875rem;
  }

  .popup-header h2 {
    font-size: 1rem;
  }

  .popup-form-section .form-group input,
  .popup-form-section .form-group select {
    padding: 0.75rem;
  }
}

/* Virtual Tour Modal Styles */
.virtual-tour-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: -1;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
  pointer-events: none;
}

.virtual-tour-modal.active {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 10005 !important;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  pointer-events: auto;
}

.virtual-tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.virtual-tour-container {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  z-index: 10006;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.virtual-tour-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #1f1f1f;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10007;
  transition: all 0.3s ease;
}

.virtual-tour-close:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.virtual-tour-content {
  padding: 2.5rem;
  text-align: left;
  background: #fff;
  color: #1f1f1f;
  max-width: 600px;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 90vh;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.virtual-tour-content h2 {
  color: #1f1f1f;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: center;
}

.virtual-tour-intro {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

#virtualTourForm .form-group {
  margin-bottom: 1.5rem;
}

#virtualTourForm label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1f1f1f;
  font-size: 0.95rem;
}

#virtualTourForm input[type="text"],
#virtualTourForm input[type="email"],
#virtualTourForm input[type="tel"],
#virtualTourForm textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#virtualTourForm input[type="text"]:focus,
#virtualTourForm input[type="email"]:focus,
#virtualTourForm input[type="tel"]:focus,
#virtualTourForm textarea:focus {
  outline: none;
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

#virtualTourForm .phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

#virtualTourForm .country-code {
  flex: 0 0 140px;
  padding: 0.875rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
  cursor: pointer;
}

#virtualTourForm .phone-input-wrapper input {
  flex: 1;
}

#virtualTourForm .checkbox-group {
  margin-top: 1.5rem;
}

#virtualTourForm .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: normal;
}

#virtualTourForm .checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
  cursor: pointer;
}

#virtualTourForm .checkbox-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}

#virtualTourForm {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#virtualTourForm .form-actions {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

#virtualTourFormAlert {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

#virtualTourFormAlert.show {
  display: block;
}

.virtual-tour-success {
  text-align: center;
  padding: 2rem 0;
}

.virtual-tour-success .success-icon {
  font-size: 4rem;
  color: #2f855a;
  margin-bottom: 1rem;
}

.virtual-tour-success h3 {
  color: #1f1f1f;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.virtual-tour-success p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .virtual-tour-container {
    width: 95%;
    max-width: 550px;
    max-height: 90vh;
  }

  .virtual-tour-content {
    padding: 1.5rem 1rem 1.5rem;
    max-height: 90vh;
  }

  .virtual-tour-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .virtual-tour-intro {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .virtual-tour-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  font-size: 3rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10001;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: clamp(44px, 7vw, 60px);
  height: clamp(44px, 7vw, 60px);
  font-size: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 10001;
  line-height: 1;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
  main > section {
    width: 100%;
    max-width: 100%;
    padding: 3.5rem clamp(1rem, 4vw, 1.5rem);
    box-sizing: border-box;
  }
  
  .cp-topbar,
  .cp-nav {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 1.25rem);
    padding-right: clamp(1rem, 4vw, 1.25rem);
    box-sizing: border-box;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
    box-sizing: border-box;
  }
  
  .cp-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cp-videos .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  /* Ensure full width on mobile with zoom support */
  html, body {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
    position: relative;
  }
  
  main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: visible !important;
    box-sizing: border-box;
    height: auto;
    max-height: none;
  }
  
  main > section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 3rem clamp(1rem, 4vw, 1.5rem);
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .cp-topbar,
  .cp-nav {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
    box-sizing: border-box;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
    box-sizing: border-box;
  }
  /* General Section Spacing - Removed duplicate rule, using above */
  
  /* Typography */
  main > section > h2,
  main > section .content > h2,
  main > section h2:first-child {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }
  
  main > section > h2::after,
  main > section .content > h2::after,
  main > section h2:first-child::after {
    width: 60px;
    height: 3px;
  }
  
  /* Header */
  .cp-topbar {
    flex-direction: column;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    text-align: center;
    padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.7rem, 2vw, 0.85rem);
  }
  
  .cp-top-actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1rem);
    font-size: inherit;
  }
  
  .cp-top-actions a {
    font-size: inherit;
  }
  
  .cp-nav {
    flex-wrap: wrap;
    padding: clamp(0.75rem, 2vw, 1rem);
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    z-index: 1000;
    overflow: visible !important;
  }
  
  .cp-logo {
    order: 1;
    flex: 1;
    min-width: 0;
  }
  
  .cp-logo img {
    width: clamp(120px, 20vw, 150px);
    max-width: 100%;
  }
  
  .cp-enquire {
    order: 2;
    padding: clamp(0.6rem, 1.5vw, 0.7rem) clamp(1.25rem, 3vw, 1.5rem);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
  }
  
  .mobile-menu-toggle {
    order: 3;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(196, 31, 36, 0.3) !important;
    border-radius: 8px !important;
    margin-left: auto;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 1002 !important;
    position: relative;
    align-items: center !important;
    justify-content: center !important;
    -webkit-tap-highlight-color: rgba(196, 31, 36, 0.3);
  }
  
  .mobile-menu-toggle i {
    font-size: 1.5rem !important;
    color: #fff !important;
    line-height: 1 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
  }
  
  .mobile-menu-toggle i.fa-bars {
    display: block !important;
  }
  
  .mobile-menu-toggle i.fa-times {
    display: none !important;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] i.fa-bars {
    display: none !important;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] i.fa-times {
    display: block !important;
  }
  
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    background: var(--primary-dark) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(196, 31, 36, 0.4) !important;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] {
    background: var(--primary-dark) !important;
  }
  
  /* Mobile Navigation Dropdown */
  .cp-nav nav {
    order: 4;
    width: 100% !important;
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0.5rem !important;
    background: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 0 12px 12px !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease !important;
    opacity: 0 !important;
    z-index: 1003 !important;
    border-top: 2px solid var(--border) !important;
    min-width: 100% !important;
    max-width: 100% !important;
    visibility: hidden !important;
  }
  
  .cp-nav nav.active {
    display: block !important;
    visibility: visible !important;
    max-height: 600px !important;
    padding: 1rem 0 !important;
    opacity: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    pointer-events: auto !important;
    height: auto !important;
  }
  
  .cp-nav nav ul {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    display: flex !important;
  }
  
  .cp-nav nav ul li {
    width: 100% !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: block !important;
  }
  
  .cp-nav nav ul li:last-child {
    border-bottom: none;
  }
  
  .cp-nav nav ul li a {
    padding: 1rem clamp(1.25rem, 3vw, 1.5rem) !important;
    width: 100% !important;
    font-size: clamp(0.95rem, 2.5vw, 1.05rem) !important;
    display: block !important;
    color: var(--charcoal) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .cp-nav nav ul li a:hover,
  .cp-nav nav ul li a:focus {
    background: rgba(196, 31, 36, 0.08) !important;
    color: var(--primary) !important;
    border-left-color: var(--primary);
    padding-left: clamp(1.5rem, 4vw, 2rem) !important;
  }
  
  .cp-nav nav ul li a::after {
    display: none !important;
  }
  
  /* Hero Section */
  .hero-spotlight {
    min-height: 100vh;
    min-height: 100dvh;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem clamp(1rem, 4vw, 1.5rem) 2.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-copy {
    text-align: center;
  }
  
  .hero-copy .eyebrow {
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    padding: 0.4rem 0.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-copy h1 {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .hero-copy p {
    font-size: clamp(0.9rem, 3vw, 1.05rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
  
  .hero-panel {
    padding: 1.5rem;
    margin-top: 1rem;
    width: 100%;
  }
  
  .hero-panel .price-range {
    margin-bottom: 1.25rem;
  }
  
  .hero-panel .value {
    font-size: clamp(1.1rem, 4vw, 1.35rem);
  }
  
  .hero-panel .meta {
    gap: 0.75rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
  
  .hero-panel .meta li {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .status-card {
    padding: 1.25rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
  
  /* Info Panels - 2x2 grid for mobile */
  .cp-info-panels {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.5rem, 2vw, 0.75rem);
    padding: 2.5rem clamp(0.75rem, 3vw, 1.5rem);
    min-width: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .cp-info-panels .panel {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .cp-info-panels .panel {
    padding: 1.25rem 1rem;
  }
  
  /* Slideshow */
  .featured-slideshow {
    min-height: 450px;
    margin: 1.5rem 0;
  }
  
  .slideshow-container {
    height: 450px;
  }
  
  .slide-content {
    padding: 2rem 1.5rem;
    max-width: 90%;
  }
  
  .slide-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 1rem;
  }
  
  .slide-content p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    margin-bottom: 1.5rem;
  }
  
  .slide-nav {
    width: clamp(40px, 6vw, 44px);
    height: clamp(40px, 6vw, 44px);
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  
  .slide-nav.prev {
    left: 1rem;
  }
  
  .slide-nav.next {
    right: 1rem;
  }
  
  .slide-indicators {
    bottom: 1rem;
    gap: 0.5rem;
  }
  
  .feature-tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  /* Overview Section */
  .cp-overview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cp-overview .content > h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
    text-align: center;
  }
  
  .cp-overview .content > h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .cp-overview .stat-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    text-align: center;
  }
  
  /* Callouts - 2x2 grid for mobile */
  .cp-callouts {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .cp-callouts article {
    padding: 1.25rem 1rem;
  }
  
  /* Day Timeline - 2x2 grid for mobile */
  .cp-day .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .cp-day .timeline li {
    padding: 1rem 0.75rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
  
  /* Home Grid - Horizontal scroll for mobile */
  .cp-homes {
    overflow-x: visible;
    width: 100%;
    position: relative;
  }
  
  .cp-homes .home-grid-wrapper {
    position: relative;
    width: 100%;
  }
  
  .cp-homes .home-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(196, 31, 36, 0.1);
    padding: 0.5rem clamp(0.75rem, 3vw, 1rem) 1rem;
    margin: 0;
    width: 100%;
    scroll-behavior: smooth;
  }
  
  /* Scroll buttons for mobile */
  .home-scroll-btn {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .home-scroll-btn:hover,
  .home-scroll-btn:active {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(196, 31, 36, 0.3);
  }
  
  .home-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
  }
  
  .home-scroll-btn i {
    font-size: 1.25rem;
  }
  
  .home-scroll-left {
    left: 0.5rem;
  }
  
  .home-scroll-right {
    right: 0.5rem;
  }
  
  .home-scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  
  .cp-homes .home-grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .cp-homes .home-grid::-webkit-scrollbar-track {
    background: rgba(196, 31, 36, 0.1);
    border-radius: 10px;
  }
  
  .cp-homes .home-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
  }
  
  .cp-homes .home-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }
  
  .home-card {
    flex: 0 0 calc(85vw - 2rem);
    min-width: calc(85vw - 2rem);
    max-width: calc(85vw - 2rem);
    padding: 1.5rem 1.25rem;
    overflow: visible;
    min-height: auto;
    scroll-snap-align: start;
  }
  
  .home-card h3 {
    font-size: clamp(0.95rem, 2.8vw, 1.05rem);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .home-card p {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    margin-bottom: 0.75rem;
  }
  
  .home-card a {
    padding: clamp(0.6rem, 2vw, 0.65rem) clamp(0.85rem, 2.8vw, 1.25rem);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    width: 100%;
    margin-top: auto;
    min-height: 44px;
  }
  
  /* Amenities - Zoom-responsive */
  .cp-amenities .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, 2vw, 1rem);
    min-width: 0;
    overflow-x: hidden;
  }
  
  .cp-amenities .amenity-card {
    padding: 1.5rem clamp(1rem, 2vw, 1.25rem);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
  }
  
  .cp-amenities .amenity-card img,
  .cp-amenities .amenity-card i,
  .cp-amenities .amenity-card svg {
    width: clamp(40px, 7vw, 50px);
    height: clamp(40px, 7vw, 50px);
    margin-bottom: 0.75rem;
  }
  
  .cp-amenities .amenity-card i {
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    color: #1f1f1f;
    -webkit-text-stroke: none;
  }
  
  .cp-amenities .amenity-card img {
    filter: brightness(0) saturate(100%);
    opacity: 0.85;
  }
  
  .cp-amenities .amenity-card svg {
    stroke: #1f1f1f !important;
    fill: none !important;
  }
  
  .cp-amenities .amenity-card h3 {
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    line-height: 1.3;
  }
  
  .tab-nav {
    flex-wrap: wrap;
    gap: 0;
  }
  
  .tab-link {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  
  /* Clubhouse */
  .cp-clubhouse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cp-clubhouse .club-content > h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
    text-align: center;
  }
  
  .cp-clubhouse .club-content > h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Project Details */
  .cp-project-details {
    min-height: 450px;
    padding: 3rem 1.5rem;
  }
  
  .project-content {
    padding: 2rem 1.5rem;
  }
  
  .project-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  
  .project-content p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }
  
  /* Gallery */
  .cp-gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Videos - 2x2 grid for mobile */
  .cp-videos .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  /* Testimonials, Awards, Legal - 2x2 grid for mobile */
  .cp-testimonials .testimonial-grid,
  .cp-awards .award-grid,
  .cp-legal .legal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .cp-testimonials blockquote,
  .cp-awards .award-grid article,
  .cp-legal article {
    padding: 1.25rem 1rem;
  }
  
  /* Contact */
  .cp-contact {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cp-contact .form-wrap {
    padding: 2rem 1.5rem;
  }
  
  .cp-contact iframe {
    height: 200px;
    margin-top: 1rem;
  }
  
  /* Footer */
  .cp-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  /* Lightbox */
  .lightbox-close {
    top: 10px;
    right: 15px;
    width: clamp(36px, 6vw, 40px);
    height: clamp(36px, 6vw, 40px);
    font-size: clamp(1.25rem, 2.5vw, 2rem);
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: clamp(40px, 6.5vw, 50px);
    height: clamp(40px, 6.5vw, 50px);
    font-size: clamp(1.1rem, 2.5vw, 2rem);
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }
  
  /* Download Grid */
  .cp-gallery .download-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  /* General - Enhanced for zoom support */
  html, body {
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    overflow-x: hidden;
    font-size: 16px;
    position: relative;
  }
  
  main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: visible !important;
    box-sizing: border-box;
    height: auto;
    max-height: none;
  }
  
  main > section {
    padding: 2rem clamp(0.75rem, 3vw, 1rem);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .cp-topbar,
  .cp-nav {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
    box-sizing: border-box;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
    box-sizing: border-box;
  }
  
  /* Header */
  .cp-topbar {
    padding: clamp(0.5rem, 1.5vw, 0.6rem) clamp(0.6rem, 2vw, 0.75rem);
    font-size: clamp(0.65rem, 2vw, 0.75rem);
  }
  
  .cp-top-actions {
    flex-direction: column;
    gap: clamp(0.4rem, 1.5vw, 0.5rem);
    font-size: inherit;
    width: 100%;
  }
  
  .cp-top-actions a {
    justify-content: center;
    font-size: inherit;
    padding: clamp(0.4rem, 1.5vw, 0.5rem);
    min-height: 44px;
  }
  
  /* Touch targets should be at least 44x44px */
  .mobile-menu-toggle {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(196, 31, 36, 0.3);
  }
  
  .mobile-menu-toggle i {
    font-size: 1.25rem;
    color: #fff;
  }
  
  .cp-nav {
    padding: clamp(0.6rem, 2vw, 0.75rem);
  }
  
  .cp-logo img {
    width: clamp(90px, 16vw, 110px);
    max-width: 100%;
  }
  
  .cp-enquire {
    padding: clamp(0.5rem, 1.5vw, 0.55rem) clamp(0.9rem, 2.5vw, 1.1rem);
    font-size: clamp(0.75rem, 2vw, 0.8rem);
  }
  
  .cp-topbar {
    padding: 0.4rem 0.5rem;
  }
  
  .cp-topbar p {
    font-size: clamp(0.6rem, 2.5vw, 0.7rem);
  }
  
  .cp-top-actions a {
    font-size: clamp(0.6rem, 2.5vw, 0.7rem);
    padding: 0.35rem 0.6rem;
  }
  
  /* Typography */
  main > section > h2,
  main > section .content > h2,
  main > section h2:first-child {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
    margin-bottom: 1.25rem;
  }
  
  /* Hero */
  .hero-spotlight {
    min-height: 90vh;
    min-height: 90dvh;
    background-size: cover;
    background-position: center 20%;
  }
  
  .hero-content {
    padding: 1.5rem clamp(0.75rem, 3vw, 1rem) 2rem;
  }
  
  .hero-copy h1 {
    font-size: clamp(1.4rem, 8vw, 1.9rem);
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }
  
  .hero-copy p {
    font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  
  .hero-actions {
    gap: 0.65rem;
  }
  
  .hero-actions .btn {
    padding: 0.9rem 1.25rem;
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }
  
  .hero-panel {
    padding: 1.25rem 1rem;
  }
  
  .hero-panel .value {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }
  
  .hero-panel .meta {
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    gap: 0.5rem;
  }
  
  .status-card {
    padding: 1rem 0.75rem;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }
  
  /* Slideshow */
  .featured-slideshow {
    min-height: 350px;
  }
  
  .slideshow-container {
    height: 350px;
  }
  
  .slide-content {
    padding: 1.5rem 1rem;
  }
  
  .slide-content h2 {
    font-size: clamp(1.25rem, 6vw, 1.5rem);
  }
  
  .slide-content p {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }
  
  .slide-nav {
    width: clamp(36px, 5.5vw, 40px);
    height: clamp(36px, 5.5vw, 40px);
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
  }
  
  .slide-nav.prev {
    left: 0.75rem;
  }
  
  .slide-nav.next {
    right: 0.75rem;
  }
  
  /* Info Panels - Zoom-responsive */
  .cp-info-panels {
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    padding: 2rem clamp(0.75rem, 3vw, 1rem);
    min-width: 0;
    overflow-x: hidden;
  }
  
  .cp-info-panels .panel {
    padding: 1.25rem clamp(0.75rem, 2vw, 1rem);
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  /* Overview */
  .cp-overview .stat-badge {
    padding: 1rem 1.5rem;
  }
  
  .cp-overview .stat-badge strong {
    font-size: 1.5rem;
  }
  
  /* Amenities - 2x2 grid for mobile phones with zoom support */
  .cp-amenities .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    min-width: 0;
    overflow-x: hidden;
  }
  
  .cp-amenities .amenity-card {
    padding: 1rem clamp(0.75rem, 2vw, 1rem);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
  }
  
  .cp-amenities .amenity-card img,
  .cp-amenities .amenity-card i,
  .cp-amenities .amenity-card svg {
    width: clamp(32px, 6.5vw, 40px);
    height: clamp(32px, 6.5vw, 40px);
    margin-bottom: 0.5rem;
  }
  
  .cp-amenities .amenity-card i {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  }
  
  .cp-amenities .amenity-card h3 {
    font-size: clamp(0.7rem, 2.2vw, 0.8rem);
    line-height: 1.3;
  }
  
  .tab-link {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Gallery */
  .cp-gallery .gallery-grid {
    gap: 0.75rem;
  }
  
  /* Videos */
  .cp-videos .video-grid {
    gap: 1rem;
  }
  
  /* Contact */
  .cp-contact .form-wrap {
    padding: 1.5rem 1.25rem;
  }
  
  .cp-contact input,
  .cp-contact textarea {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
  
  .cp-contact iframe {
    height: 180px;
  }
  
  /* Footer */
  .cp-footer {
    padding: 3rem 0 1.5rem;
  }
  
  .cp-footer .footer-top {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .cp-footer .disclaimer,
  .cp-footer .copyright {
    padding: 0 1rem;
    font-size: 0.75rem;
  }
  
  /* Toast */
  .toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
  }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
  .cp-logo img {
    width: 100px;
  }
  
  .hero-copy h1 {
    font-size: 1.4rem;
  }
  
  .hero-panel {
    padding: 1rem;
  }
  
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }
  
  .cp-amenities .amenity-card {
    padding: 1rem 0.75rem;
  }
  
  .cp-contact .form-wrap {
    padding: 1.25rem 1rem;
  }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-spotlight {
    min-height: 350px;
  }
  
  .hero-content {
    padding: 1.5rem 1rem 2rem;
  }
  
  .featured-slideshow {
    min-height: 400px;
  }
  
  .slideshow-container {
    height: 400px;
  }
}

/* Zoom-responsive adjustments */
@media (min-resolution: 1.5dppx) {
  .cp-logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Ensure navigation stays within bounds at high zoom levels */
@media (min-width: 1px) {
  .cp-header {
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .cp-topbar,
  .cp-nav {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
  }
  
  .cp-top-actions a,
  .cp-nav nav ul li a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
  }
  
  /* Prevent horizontal overflow on zoom for all sections */
  section,
  article,
  .panel,
  .home-card,
  .amenity-card {
    min-width: 0;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  /* Ensure grid items don't overflow on zoom */
  .cp-info-panels,
  .amenity-grid,
  .home-grid,
  .gallery-grid,
  .video-grid {
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* Enhanced Mobile Responsiveness - Professional Standards */
@media (max-width: 768px) {
  /* Ensure all containers are responsive with zoom support */
  main > section {
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
    min-width: 0;
    overflow-x: hidden;
  }
  
  /* Better spacing for mobile with zoom handling */
  .cp-info-panels {
    gap: clamp(0.75rem, 2vw, 1rem);
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
    min-width: 0;
    overflow-x: hidden;
  }
  
  .cp-info-panels .panel {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .cp-info-panels .panel {
    padding: 1.5rem 1.25rem;
  }
  
  /* Home cards mobile - Horizontal scroll */
  .cp-homes {
    overflow-x: visible;
    width: 100%;
    position: relative;
  }
  
  .cp-homes .home-grid-wrapper {
    position: relative;
    width: 100%;
  }
  
  .cp-homes .home-grid {
    display: flex;
    flex-direction: row;
    gap: clamp(0.75rem, 2vw, 0.875rem);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(196, 31, 36, 0.1);
    padding: 0.5rem clamp(0.75rem, 3vw, 1rem) 1rem;
    margin: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    scroll-behavior: smooth;
    box-sizing: border-box;
  }
  
  .cp-homes .home-grid::-webkit-scrollbar {
    height: 5px;
  }
  
  .cp-homes .home-grid::-webkit-scrollbar-track {
    background: rgba(196, 31, 36, 0.1);
    border-radius: 10px;
  }
  
  .cp-homes .home-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
  }
  
  /* Scroll buttons for mobile - smaller on very small screens */
  .home-scroll-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .home-scroll-btn i {
    font-size: 1.1rem;
  }
  
  .home-scroll-left {
    left: 0.25rem;
  }
  
  .home-scroll-right {
    right: 0.25rem;
  }
  
  .home-card {
    flex: 0 0 calc(90vw - 2rem);
    min-width: calc(90vw - 2rem);
    max-width: calc(90vw - 2rem);
    padding: 1.25rem clamp(0.75rem, 2vw, 1rem);
    scroll-snap-align: start;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  /* Video grid mobile - 2x2 grid */
  .cp-videos .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  /* Gallery mobile */
  .cp-gallery .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Testimonials mobile - 2x2 grid */
  .cp-testimonials .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .cp-testimonials blockquote {
    padding: 1.25rem 1rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  }
  
  /* Awards mobile - 2x2 grid */
  .cp-awards .award-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .cp-awards .award-grid article {
    padding: 1.25rem 1rem;
  }
  
  /* Legal mobile */
  .cp-legal .legal-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Day timeline mobile */
  .cp-day .timeline {
    grid-template-columns: 1fr;
  }
  
  /* Callouts mobile */
  .cp-callouts {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  /* Extra mobile optimizations */
  main > section {
    padding-left: clamp(0.75rem, 3vw, 1rem);
    padding-right: clamp(0.75rem, 3vw, 1rem);
  }
  
  /* Smaller padding for cards */
  .cp-info-panels .panel,
  .cp-callouts article,
  .cp-awards .award-grid article,
  .cp-legal article {
    padding: 1.25rem 1rem;
  }
  
  /* Compact spacing */
  .cp-day .timeline li {
    padding: 1.25rem 1rem;
  }
}

/* Print Styles */
@media print {
  .cp-header,
  .cp-footer,
  .cp-enquire,
  .mobile-menu-toggle,
  .slide-nav,
  .slide-indicators,
  .lightbox {
    display: none;
  }
  
  main > section {
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
}
