/* Godrej Kukatpally / Brooklyn Avenue Stylesheet */

/* Design System Variables (Aligned with Reference Vercel Site) */
:root {
  --background: 230 50% 94%;           /* Light bluish background */
  --foreground: 233 60% 20%;           /* Deep navy indigo */
  
  --card: 0 0% 100%;                   /* White */
  --card-foreground: 233 60% 20%;
  
  --primary: 233 64% 30%;              /* Royal Indigo Navy */
  --primary-foreground: 230 50% 96%;
  
  --secondary: 230 40% 88%;            /* Soft light blue-gray */
  --secondary-foreground: 233 55% 25%;
  
  --muted: 230 35% 80%;
  --muted-foreground: 230 25% 45%;
  
  --accent: 230 52% 48%;
  --accent-foreground: 230 50% 98%;
  
  --border: 230 30% 85%;
  --input: 230 30% 88%;
  --ring: 230 52% 48%;
  
  --custom-gold: 40 50% 40%;           /* Bronze/Gold color: hsl(40, 50%, 40%) */
  
  --font-heading: 'Alegreya', Georgia, serif;
  --font-body: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  
  --container-max: 1280px;
}

/* Reset / General Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  scrollbar-width: thin;
  scrollbar-color: hsl(var(--custom-gold)) rgba(230, 230, 230, 0.3);
}

body {
  font-family: var(--font-body);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Scrollbar customizations */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(230, 230, 230, 0.3);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: hsl(var(--custom-gold));
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: background-color 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background-color: hsl(var(--accent));
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  outline: none;
  background: none;
  border: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.section-padding {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.text-center { text-align: center; }
.text-gold { color: hsl(var(--custom-gold)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  font-size: 0.875rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: hsl(var(--custom-gold));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  background-color: hsl(var(--custom-gold) / 0.9);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 1px solid hsl(var(--input));
  background-color: transparent;
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent));
}

.btn-full {
  width: 100%;
}

/* Glassmorphic Navigation Header */
.header {
  background-color: hsl(var(--card));
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all var(--transition-medium) ease-out;
}

.header-container {
  display: flex;
  height: 4rem; /* 16 */
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 56px;
  max-width: 160px;
  object-fit: contain;
}

.nav-menu {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast) ease-out;
}

.nav-link svg {
  height: 1rem;
  width: 1rem;
  stroke-width: 2;
  color: hsl(var(--foreground));
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: hsl(var(--custom-gold));
  border-bottom-color: hsl(var(--custom-gold));
}

.nav-link:hover svg, .nav-link.active svg {
  color: hsl(var(--custom-gold));
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  transition: background-color var(--transition-fast);
}

.menu-toggle:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.menu-toggle svg {
  height: 1.5rem;
  width: 1.5rem;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Sidebar for Mobile */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: hsl(var(--card));
  z-index: 100;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  box-shadow: var(--shadow-2xl);
  transition: right var(--transition-medium) ease-out;
  border-left: 1px solid hsl(var(--border));
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  align-self: flex-end;
  color: hsl(var(--foreground));
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-link.active, .mobile-link:hover {
  color: hsl(var(--custom-gold));
  border-bottom-color: hsl(var(--custom-gold));
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  backdrop-filter: blur(2px);
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hero {
    height: calc(100vh - 7rem);
    min-height: 600px;
    padding: 0;
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

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

.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

.hero-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
  cursor: pointer;
}

.hero-dot.active {
  background-color: #ffffff;
  width: 1.25rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  z-index: 10;
}

@media (max-width: 768px) {
  .hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.hero-container {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

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

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    width: 50%;
  }
  .hero-content-wide {
    width: 60%;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4rem; } }

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

@media (min-width: 768px) {
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Hero card styling */
.hero-card-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-card-wrapper {
    width: 40%;
    justify-content: flex-end;
  }
}

.hero-card {
  position: relative;
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  width: 100%;
  max-width: 24rem;
}

.hero-card-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background-color: hsl(var(--custom-gold));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero-card-header {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.hero-card-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-card-header p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero-card-stats {
  background-color: hsl(var(--secondary) / 0.3);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.stat-row span:last-child {
  font-weight: 600;
}

.hero-card-highlights {
  background-color: hsl(var(--custom-gold));
  color: hsl(var(--primary-foreground));
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.highlight-row {
  padding: 0.625rem 1rem;
  text-align: center;
  font-weight: 500;
}

.highlight-row + .highlight-row {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-card-price {
  text-align: center;
  margin-bottom: 1.25rem;
}

.price-label {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--custom-gold));
  margin-top: 0.25rem;
}

.price-value span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  vertical-align: baseline;
}

/* Highlights Section */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-align: center;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }

.title-underline {
  height: 0.25rem;
  width: 5rem;
  background-color: hsl(var(--custom-gold));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.highlights-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .highlights-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.highlights-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlights-desc {
  font-size: 1rem;
  line-height: 1.625;
  color: hsl(var(--foreground) / 0.9);
}

.highlights-desc strong {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.highlights-grid-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .highlights-grid-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.highlights-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.highlights-item svg {
  height: 1.25rem;
  width: 1.25rem;
  color: hsl(var(--custom-gold));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.highlights-item span {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.9);
}

.highlights-img-container {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 60px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
}

.highlights-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.highlights-img-container:hover img {
  transform: scale(1.05);
}

.artist-caption {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Floor Plan & Pricing */
.floor-section {
  background-color: hsl(var(--secondary) / 0.5);
}

.floor-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .floor-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

.floor-card-box {
  background-color: hsl(var(--card));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}

.floor-card-box:hover {
  box-shadow: var(--shadow-2xl);
}

.floor-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  overflow: hidden;
}

.floor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter var(--transition-medium);
}

.floor-card-box:hover .floor-card-image img {
  filter: blur(8px);
}

.floor-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

.floor-card-box:hover .floor-card-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.lock-container {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  padding: 0.75rem;
  transition: background-color 0.3s;
}

.floor-card-box:hover .lock-container {
  background-color: rgba(255, 255, 255, 0.3);
}

.lock-container svg {
  height: 1.5rem;
  width: 1.5rem;
  color: #ffffff;
}

.overlay-text {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.floor-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.floor-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.floor-card-size {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.floor-card-price {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--custom-gold));
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.floor-card-price svg {
  height: 1.75rem;
  width: 1.75rem;
  margin-right: 0.125rem;
}

/* Amenities Carousel */
.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-outer {
  overflow: hidden;
}

.carousel-slide-track {
  display: flex;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  transition: transform var(--transition-medium);
}

@media (min-width: 768px) {
  .carousel-slide-track {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.carousel-item-slide {
  flex: 0 0 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .carousel-item-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-item-slide {
    flex: 0 0 33.3333%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.amenity-card-box {
  background-color: hsl(var(--card));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid hsl(var(--border) / 0.5);
  position: relative;
  aspect-ratio: 4 / 3;
}

.amenity-card-image {
  position: absolute;
  inset: 0;
}

.amenity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.amenity-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  background-color: hsl(var(--background) / 0.85);
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background-color: hsl(var(--foreground) / 0.6);
  color: hsl(var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, background-color 0.2s;
}

.nav-arrow:hover {
  background-color: hsl(var(--foreground) / 0.8);
}

.nav-arrow svg {
  height: 1rem;
  width: 1rem;
}

.nav-arrow-left {
  left: -0.375rem;
}

@media (min-width: 640px) { .nav-arrow-left { left: -0.5rem; } }
@media (min-width: 768px) { .nav-arrow-left { left: -0.625rem; } }

.nav-arrow-right {
  right: -0.375rem;
}

@media (min-width: 640px) { .nav-arrow-right { right: -0.5rem; } }
@media (min-width: 768px) { .nav-arrow-right { right: -0.625rem; } }

/* Location Advantages */
.loc-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .loc-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border));
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-tabs-card {
  display: flex;
  flex-direction: column;
  background-color: hsl(var(--card));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}

.location-tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  background-color: hsl(var(--secondary) / 0.3);
}

.loc-tab-btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .loc-tab-btn {
    font-size: 0.875rem;
  }
}

.loc-tab-btn:hover {
  border-color: hsl(var(--custom-gold));
  color: hsl(var(--custom-gold));
}

.loc-tab-btn.active {
  background-color: hsl(var(--custom-gold));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--custom-gold));
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.location-tab-body {
  flex-grow: 1;
  padding: 1.25rem;
  overflow-y: auto;
}

.loc-distance-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.loc-distance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  font-size: 0.875rem;
}

.loc-distance-item:last-child {
  border-bottom: none;
}

.loc-item-name {
  color: hsl(var(--foreground) / 0.9);
}

.loc-item-time {
  font-weight: 600;
  color: hsl(var(--custom-gold));
  background-color: hsl(var(--custom-gold) / 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
}

/* Gallery Section */
.gallery-layout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-layout-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-box-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.gallery-box-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.gallery-box-item:hover img {
  transform: scale(1.05);
}

.gallery-box-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.gallery-box-item:hover .gallery-box-overlay {
  opacity: 1;
}

.gallery-box-overlay svg {
  height: 2rem;
  width: 2rem;
  color: #ffffff;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

.lightbox-caption {
  color: #ffffff;
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: hsl(var(--custom-gold));
}

/* About Us Section */
.about-stats-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-stats-panel {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.about-stat-item {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--custom-gold));
  margin-bottom: 0.25rem;
}

.about-stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.25;
}

.about-paragraph-box {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.625;
  color: hsl(var(--foreground) / 0.9);
}

.about-paragraph-box p strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

/* Footer Section */
.footer {
  background-color: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer-top-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-top-logo img {
  height: 56px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* White contrast on blue background */
}

.footer-disclaimer-card {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer-card strong {
  color: #ffffff;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

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

.footer-legal-links a:hover {
  text-decoration: underline;
  color: hsl(var(--custom-gold));
}

/* Modal Popup Window */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-medium);
  padding: 1rem;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-wrapper {
  background-color: #ffffff;
  width: 100%;
  max-width: 850px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid hsl(var(--border));
  position: relative;
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform var(--transition-medium);
}

.modal.active .modal-wrapper {
  transform: translateY(0);
}

.modal-container-card {
  display: grid;
  grid-template-columns: 3.5fr 6.5fr;
  min-height: 560px;
}

@media (max-width: 768px) {
  .modal-container-card {
    grid-template-columns: 1fr;
  }
  .modal-left-promise {
    display: none !important;
  }
  .modal-wrapper {
    max-width: 450px;
  }
}

/* Left Promise Column */
.modal-left-promise {
  background-color: #ebeffa;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid hsl(var(--border) / 0.5);
}

.promise-header {
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.promise-header h3 {
  font-family: 'Alegreya SC', var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.promise-line {
  width: 40px;
  height: 2px;
  background-color: hsl(var(--custom-gold));
  margin: 10px auto 0;
}

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

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.promise-icon {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--custom-gold));
}

.promise-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Right Form Column */
.modal-right-form {
  padding: 2.5rem 3rem 2.0rem;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .modal-right-form {
    padding: 2rem 1.5rem;
  }
}

.form-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.25rem;
  text-align: center;
}

.modal-partner-sub {
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
  margin-top: 6px;
  line-height: 1.4;
}

.form-title-section {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-title-section h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--custom-gold));
  letter-spacing: 0.02em;
}

.title-line {
  width: 50px;
  height: 2px;
  background-color: hsl(var(--custom-gold));
  margin: 6px auto 0;
}

.enquiry-form-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.enquiry-form-new .form-input-group {
  width: 100%;
  margin-bottom: 0; /* Override default margin */
}

.enquiry-form-new .form-field-control {
  width: 100%;
  height: 44px;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  background-color: #f0f3fa;
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.enquiry-form-new select.form-field-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.1rem;
  padding-right: 2.25rem;
  cursor: pointer;
  color: hsl(var(--foreground));
}

.enquiry-form-new select.form-field-control:invalid,
.enquiry-form-new select.form-field-control option[value=""] {
  color: hsl(var(--muted-foreground) / 0.8);
}

.enquiry-form-new input.form-field-control::placeholder {
  color: hsl(var(--muted-foreground) / 0.8);
}

.enquiry-form-new .form-field-control:hover {
  background-color: #e5eaf5;
}

.enquiry-form-new .form-field-control:focus {
  background-color: #ffffff;
  border-color: hsl(var(--custom-gold));
  box-shadow: 0 0 0 2px hsl(var(--custom-gold) / 0.2);
}

/* Custom Phone Selector Grid */
.phone-input-group {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  background-color: #f0f3fa;
  border: 1px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.phone-input-group:hover {
  background-color: #e5eaf5;
}

.phone-input-group:focus-within {
  background-color: #ffffff;
  border-color: hsl(var(--custom-gold));
  box-shadow: 0 0 0 2px hsl(var(--custom-gold) / 0.2);
}

.phone-country-select {
  width: 90px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  padding-left: 10px;
  cursor: pointer;
  appearance: none;
  outline: none;
  border-right: 1px solid hsl(var(--border) / 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  background-size: 0.9rem;
  padding-right: 1.5rem;
}

.phone-number-input {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  outline: none;
}

.phone-number-input::placeholder {
  color: hsl(var(--muted-foreground) / 0.8);
}

/* Consent check */
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  text-align: left;
}

.form-checkbox {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: hsl(var(--custom-gold));
  border: 1px solid hsl(var(--border));
  border-radius: 3px;
  flex-shrink: 0;
}

.consent-label {
  font-size: 0.65rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
  cursor: pointer;
}

.consent-label a {
  text-decoration: underline;
  color: hsl(var(--foreground));
}

.consent-label a:hover {
  color: hsl(var(--custom-gold));
}

/* Submit button overrides */
.submit-button-new {
  background-color: hsl(var(--custom-gold));
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px hsl(var(--custom-gold) / 0.2);
}

.submit-button-new:hover {
  background-color: hsl(40 50% 32%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px hsl(var(--custom-gold) / 0.3);
}

/* Form Footer features */
.form-features-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid hsl(var(--border) / 0.4);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-feature-item svg {
  color: hsl(var(--custom-gold));
}

.footer-feature-item span {
  font-size: 0.65rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-win-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: hsl(var(--foreground) / 0.6);
  cursor: pointer;
  transition: color var(--transition-fast);
  z-index: 10;
}

.modal-win-close:hover {
  color: hsl(var(--foreground));
}

.modal-win-close svg {
  height: 1.25rem;
  width: 1.25rem;
}

/* Form Styles */
.form-input-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field-lbl {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.form-field-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.3);
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  transition: border-color 0.2s, background-color 0.2s;
}

.form-field-control:focus {
  border-color: hsl(var(--custom-gold));
  background-color: hsl(var(--card));
  outline: none;
}

.form-field-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  padding-right: 2.25rem;
}

.form-bottom-note {
  font-size: 0.7rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 0.75rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.625rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status.error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Floating widgets */
.floating-widget-box {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-action-btn {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: #ffffff;
  transition: transform 0.2s;
}

.float-action-btn:hover {
  transform: scale(1.1);
}

.float-btn-whatsapp {
  background-color: #25d366;
}

.float-btn-call {
  background-color: hsl(var(--custom-gold));
  color: #ffffff;
}

/* Mobile Quick Footer Action Bar */
.mobile-action-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: hsl(var(--card));
  z-index: 55;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
  border-top: 1px solid hsl(var(--border));
}

.action-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 3.5rem;
}

.action-footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.action-footer-btn:first-child {
  border-right: 1px solid hsl(var(--border));
}

.action-footer-btn.gold-accent {
  background-color: hsl(var(--custom-gold));
  color: hsl(var(--primary-foreground));
}

@media (max-width: 768px) {
  .floating-widget-box {
    bottom: 4.5rem;
    right: 1rem;
  }
  .float-action-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
  .mobile-action-footer {
    display: block;
  }
  body {
    padding-bottom: 3.5rem;
  }
}
