/* Indian Luxury Residences - Luxury Real Estate Website
   Dark/Gold Theme - Pure HTML5/CSS3 */

/* ========================================
   CSS Variables & Theme
   ======================================== */
:root {
  --gold: #d4a846;
  --gold-light: #e8c97a;
  --gold-dark: #b8922e;
  --background: #0d1117;
  --background-light: #161b22;
  --card: #1a1f26;
  --card-border: #2d333b;
  --foreground: #e6e8eb;
  --foreground-muted: #8b949e;
  --white: #ffffff;
  --black: #000000;
  --emerald: #10b981;
  --amber: #f59e0b;
  --purple: #a855f7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--foreground-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }

/* ========================================
   Layout Utilities
   ======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--background);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212, 168, 70, 0.5);
}

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

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-icon {
  padding: 0.625rem;
  width: 2.5rem;
  height: 2.5rem;
}

/* ========================================
   Header
   ======================================== */
.header,
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}

.header.transparent,
.site-header.transparent {
  background: transparent;
  border-bottom: none;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 5rem;
}

.header-landing {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.header-landing .btn-outline {
  display: inline-flex;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 767px) {
  .logo img {
    max-width: 150px;
  }
}

.logo span {
  color: var(--gold);
}

.header-title {
  display: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foreground-muted);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .header-title {
    display: block;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.header-phone svg {
  flex-shrink: 0;
}

.phone-text {
  display: none;
}

@media (min-width: 480px) {
  .phone-text {
    display: inline;
  }
}

.header-enquire {
  display: none;
}

@media (min-width: 768px) {
  .header-enquire {
    display: inline-flex;
  }
}

.header-link {
  display: none;
}

@media (min-width: 768px) {
  .header-link {
    display: inline-flex;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

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

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: var(--background);
  border-left: 1px solid var(--card-border);
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--card-border);
  border-radius: 0.375rem;
  color: var(--foreground);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--card);
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 0.5rem;
}

.mobile-menu-links a {
  display: block;
  padding: 1rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: var(--transition);
}

.mobile-menu-links a:hover {
  background: var(--card);
  color: var(--gold);
}

/* Floating Enquire Button (Mobile Only) */
.floating-enquire-btn {
  /* position: fixed;
  bottom: 1.5rem; */
  /* right: 1.5rem; */
  z-index: 90;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--background);
  border: none;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212, 168, 70, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

@media (max-width: 767px) {
  .floating-enquire-btn {
    display: flex;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .header-phone {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  
  .header-phone svg {
    width: 14px;
    height: 14px;
  }
}

.floating-enquire-btn:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 30px rgba(212, 168, 70, 0.5);
  transform: translateY(-2px);
}

.floating-enquire-btn svg {
  flex-shrink: 0;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ========================================
   Landing Page - Location Split
   ======================================== */
.landing {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .landing {
    flex-direction: row;
  }
}

.landing-logo {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

.landing-logo span {
  color: var(--gold);
}

.location-card {
  position: relative;
  flex: 1;
  height: 50vh;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .location-card {
    height: 100vh;
  }
}

.location-card-image {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

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

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

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    rgba(0, 0, 0, 0.2) 100%);
  transition: opacity 0.5s ease;
}

.location-card:hover .location-card-overlay {
  opacity: 0.9;
}

.location-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.location-card-inner {
  transition: transform 0.5s ease;
}

.location-card:hover .location-card-inner {
  transform: translateY(-1rem);
}

.location-tagline {
  display: block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.location-name {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .location-name {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .location-name {
    font-size: 4.5rem;
  }
}

.location-divider {
  width: 5rem;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  transition: width 0.5s ease;
}

.location-card:hover .location-divider {
  width: 8rem;
}

.location-projects {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 1.125rem;
}

.location-cta {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  opacity: 0;
  transition: all 0.5s ease;
}

.location-card:hover .location-cta {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.location-cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 168, 70, 0.5);
  padding: 0.75rem 1.5rem;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.3);
}

.landing-scroll {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  text-align: center;
}

.landing-scroll p {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.landing-scroll-indicator {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.25rem;
}

.landing-scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background: var(--gold);
  border-radius: 9999px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.5rem); }
}

/* ========================================
   Location Page
   ======================================== */
.location-hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
}

.location-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.6) 0%, 
    rgba(0, 0, 0, 0.4) 50%, 
    var(--background) 100%);
}

.location-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

.location-hero-tagline {
  display: block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.location-hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

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

.location-hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 1.125rem;
}

/* ========================================
   Projects Section
   ======================================== */
.projects-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

.section-divider {
  width: 5rem;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1rem;
}

.section-subtitle {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  max-width: 42rem;
  margin: 0 auto;
}

/* ========================================
   Project Grid
   ======================================== */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

/* ========================================
   Project Card
   ======================================== */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.375rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.project-card:hover {
  border-color: rgba(212, 168, 70, 0.5);
}

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

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.1);
}

.project-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.7) 0%, 
    rgba(0, 0, 0, 0.2) 50%, 
    transparent 100%);
}

.project-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  color: var(--white);
}

.badge-ready { background: rgba(16, 185, 129, 0.9); }
.badge-construction { background: rgba(245, 158, 11, 0.9); }
.badge-launching { background: rgba(168, 85, 247, 0.9); }

.project-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.project-card:hover .project-card-title {
  color: var(--gold);
}

.project-card-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.project-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-card-price {
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
}

.project-card-beds {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

/* ========================================
   Project Detail Page
   ======================================== */
.project-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.8) 0%, 
    rgba(0, 0, 0, 0.3) 50%, 
    rgba(0, 0, 0, 0.2) 100%);
}

.project-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

@media (min-width: 768px) {
  .project-hero-content {
    padding: 4rem;
  }
}

.project-hero-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.project-hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

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

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

.project-hero-tagline {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.project-hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
}

.project-hero-location svg {
  color: var(--gold);
}

/* ========================================
   Project Content
   ======================================== */
.project-content {
  padding: 4rem 0;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.project-main h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.project-main h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.content-divider {
  width: 4rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.project-description {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Highlights */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(212, 168, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.highlight-text {
  color: var(--foreground);
  font-family: var(--font-body);
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0.375rem;
}

.amenity-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.amenity-text {
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

/* ========================================
   Project Sidebar
   ======================================== */
.project-sidebar {
  position: sticky;
  top: 7rem;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0.375rem;
  padding: 2rem;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.sidebar-divider {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.375rem;
  background: rgba(212, 168, 70, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.detail-icon span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

.detail-label {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.detail-value {
  color: var(--foreground);
  font-family: var(--font-body);
  font-weight: 600;
}

.sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

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

/* ========================================
   Gallery Section
   ======================================== */
.gallery-section {
  padding: 4rem 0;
  background: var(--card);
}

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

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.375rem;
  cursor: pointer;
}

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

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

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

.gallery-item:hover .gallery-item-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.gallery-item-text {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-text {
  opacity: 1;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    var(--background), 
    var(--card), 
    var(--background));
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-subtitle {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--card-border);
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--foreground-muted);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.footer-contact-item span {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid var(--card-border);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.footer-copyright {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

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

.footer-links a {
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--card-border);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--foreground-muted);
  transition: color 0.3s ease;
}

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

.modal-body {
  padding: 1.5rem;
}

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

.form-label {
  display: block;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--background);
  border: 1px solid var(--card-border);
  border-radius: 0.375rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238b949e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select option {
  background: var(--background);
  color: var(--foreground);
  padding: 0.5rem;
}

.form-select optgroup {
  background: var(--background-light);
  color: var(--gold);
  font-weight: 600;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-textarea {
  resize: none;
  min-height: 6rem;
}

.form-note {
  text-align: center;
  color: var(--foreground-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  z-index: 10;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  padding: 1rem;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--card);
  border: 1px solid var(--gold);
  border-radius: 0.375rem;
  padding: 1rem 1.5rem;
  z-index: 400;
  display: none;
  max-width: 24rem;
  box-shadow: var(--shadow-lg);
}

.toast.active {
  display: block;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.toast-title {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--foreground-muted);
}

/* ========================================
   Back Button
   ======================================== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.back-btn:hover {
  color: var(--gold);
}

.back-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ========================================
   Utility Classes
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 639px) {
  .sm\:hidden {
    display: none !important;
  }
}

@media (min-width: 640px) {
  .sm\:flex {
    display: flex !important;
  }
}


