/* Global site styles for multi-property listing */
@import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');

:root {
  --brand: #0D1B3E;
  --accent: #72B139;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f7f9fb;
  --font-primary: 'TASA Orbiter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font-primary);
  color: var(--text);
  background: #fff;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { width: min(1200px, 92%); margin: 0 auto; }

/* Navigation Bar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  height: 40px; /* Adjust based on your logo's aspect ratio */
  text-decoration: none;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 180px; /* Control max width of the logo */
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
  opacity: 0.9;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #4a4a4a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  font-family: 'Inter', sans-serif;
}

.nav-links a:hover {
  color: #0D1B3E;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0D1B3E;
  transition: all 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Phone Number */
.phone-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0D1B3E;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid rgba(13, 27, 62, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
  margin-left: 1rem;
}

.phone-number:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  color: #0D1B3E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(13, 27, 62, 0.2);
}

.phone-number:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-number svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #0D1B3E;
  transition: all 0.3s ease;
}

/* Adjust for mobile */
@media (max-width: 768px) {
  /* Hide navigation and hamburger */
  .nav-toggle,
  .nav-links {
    display: none !important;
  }
  
  /* Mobile navbar container - flex layout */
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 1rem;
  }
  
  /* Logo positioning - left aligned */
  .logo {
    flex: 0 0 auto;
    justify-content: flex-start;
    order: 1;
  }
  
  .logo-img {
    max-height: 40px;
    width: auto;
    height: auto;
  }
  
  /* Phone number positioning - right aligned */
  .nav-actions {
    flex: 0 0 auto;
    order: 2;
  }
  
  .phone-number {
    margin: 0;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 20px;
  }
  
  .phone-number svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #0D1B3E;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #0D1B3E;
  transition: all 0.3s ease;
}

.hamburger::before {
  transform: translateY(-6px);
}

.hamburger::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .nav-links ul {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav-actions {
    margin-left: auto;
    margin-right: 1rem;
  }
  
  /* Removed currency selector styles */
}

/* Add smooth scrolling and padding for fixed header */
html {
  scroll-padding-top: 80px;
}

/* Add some space below the fixed header */
main {
  margin-top: 0;
}

/* Luxury Hero Section */
.luxury-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('../home_page_images/Hero section.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 2rem;
  overflow: hidden;
  border-radius: 40px 40px 40px 40px;
  margin: 0 auto;
  width: 100%;
  max-width: calc(100% - 2rem);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Adjust hero section for smaller screens */
@media (max-width: 768px) {
  .luxury-hero {
    border-radius: 0 0 30px 30px;
    max-width: 100%;
    margin: 0;
    padding: 1rem;
  }
}

/* Header Actions */
.header-actions {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}

/* Glass Effect Button */
.callback-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.callback-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.callback-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.callback-btn:hover svg {
  transform: scale(1.1);
}

/* Tagline */
.tagline {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
  font-family: 'Inter', sans-serif;
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 2;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Playfair Display', serif;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: 'Inter', sans-serif;
}

/* Search Container */
.search-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-bar {
  display: flex;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  outline: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
}

.search-button {
  background: #0D1B3E;
  border: none;
  color: white;
  padding: 0 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #ffffff;
}

/* Quick Search Options */
.quick-search-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  justify-content: center;
}

.quick-search-label {
  font-size: 1rem;
  color: #ffffff;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.quick-search-tag {
  background: rgba(13, 27, 62, 0.05);
  border: 1px solid rgba(13, 27, 62, 0.1);
  border-radius: 20px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-search-tag:hover {
  background: rgba(13, 27, 62, 0.1);
  transform: translateY(-1px);
}

.quick-search-tag:active {
  transform: translateY(0);
}

/* Category Filters */
.category-filters {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.category-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  font-family: 'Inter', sans-serif;
}

.category-btn:hover,
.category-btn.active {
  background: white;
  color: #0D1B3E;
}

@media (max-width: 768px) {
  .luxury-hero {
    min-height: 100vh;
    padding: 1rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .search-container {
    padding: 1.5rem;
  }
  
  .category-filters {
    gap: 0.5rem;
  }
  
  .category-btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  
  .tagline {
    display: none;
  }
  
  .header-actions {
    top: 1rem;
    left: 1rem;
  }
  
  .callback-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Fabulous Headline Section */
.fabulous-section {
  padding: 0rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.fabulous-headline {
  font-size: 8vw;
  font-weight: 800;
  line-height: 1.2;
  color: #0D1B3E;
  margin: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 3rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  position: relative;
  z-index: 1;
  text-shadow: 
    0 1px 0 #ccc,
    0 2px 0 #b8b8b8,
    0 3px 5px rgba(0,0,0,0.1),
    0 4px 10px rgba(0,0,0,0.1);
  transform: perspective(500px) rotateX(5deg);
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.fabulous-headline:hover {
  text-shadow: 
    0 1px 0 #ccc,
    0 2px 0 #b8b8b8,
    0 3px 5px rgba(0,0,0,0.15),
    0 6px 15px rgba(0,0,0,0.15);
  transform: perspective(500px) rotateX(0);
}

.fabulous-content {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fabulous-left,
.fabulous-right {
  flex: 1;
  position: relative;
  padding: 2rem 0;
}

.fabulous-left {
  text-align: right;
  border-right: 1px solid rgba(13, 27, 62, 0.1);
  padding-right: 2rem;
}

.fabulous-right {
  padding-left: 2rem;
}

.fabulous-left p,
.fabulous-right p {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #4a4a4a;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  position: relative;
}

.fabulous-left p::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: 0;
  width: 60px;
  height: 2px;
  background: #0D1B3E;
}

.fabulous-right p::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 0;
  width: 60px;
  height: 2px;
  background: #0D1B3E;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .fabulous-section {
    padding: 4rem 0;
    min-height: 50vh;
  }
  
  .fabulous-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .fabulous-left,
  .fabulous-right {
    text-align: left;
    padding: 1.5rem 0;
    border: none;
  }
  
  .fabulous-left {
    border-bottom: 1px solid rgba(13, 27, 62, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1rem;
  }
  
  .fabulous-left p::after {
    right: auto;
    left: 0;
  }
  
  .fabulous-headline {
    font-size: 15vw;
    margin-bottom: 2rem;
  }
  
  .fabulous-left p,
  .fabulous-right p {
    font-size: 1.25rem;
  }
}

/* Header */
.site-header { 
  position: sticky; 
  top: 10px; 
  z-index: 100; 
  background: #fff; 
  border-radius: 12px;
  margin: 10px 2rem 0;
  width: calc(100% - 4rem);
  border: 1px solid rgba(0,0,0,0.06); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
}

/* Add padding to main content to account for fixed header */
main {
  padding-top: 1rem;
}
.site-header .nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--brand); font-weight: 800; text-decoration: none; }
.brand img { height: 36px; display: block; }

/* Hero */
.hero { padding: clamp(36px, 8vw, 72px) 0 24px; background: var(--bg); text-align: center; }
.hero h1 { font-size: clamp(28px, 4.2vw, 44px); color: var(--brand); letter-spacing: .3px; }
.hero p { color: var(--muted); margin-top: 10px; }

/* Property grid */
.properties { padding: clamp(28px, 6vw, 48px) 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
@media (max-width: 992px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .grid { grid-template-columns: 1fr; } }

.card { border: 1px solid #e8eef5; border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 12px 28px rgba(2,12,27,0.06); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(2,12,27,0.10); }
.card a { color: inherit; text-decoration: none; display: block; }
.card .media { aspect-ratio: 16/9; background: #eef2f7; overflow: hidden; }
.card .media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .body { padding: 14px; display: grid; gap: 8px; }
.card .title { font-weight: 800; color: #0D1B3E; font-size: 1.1rem; }
.card .meta { color: var(--muted); margin-top: 6px; font-size: .95rem; }
.card .price { color: #0a6b2c; font-weight: 900; }
.card .size { color: #374151; font-weight: 600; font-size: .95rem; }
.card .actions { margin-top: 4px; display: flex; gap: 8px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 12px; border-radius: 999px; font-weight: 700; cursor: pointer; text-decoration: none; border: 1px solid transparent; }
.btn-primary { background: var(--accent); color: #0c1b2a; border-color: rgba(0,0,0,0.06); }
.btn-outline { background: #fff; color: #012465; border-color: #d1d5db; }
.btn:hover { filter: brightness(1.02); box-shadow: 0 6px 16px rgba(2,12,27,0.08); }

/* Section headings */
.section { padding: clamp(20px, 4vw, 28px) 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.section h2 { font-size: clamp(22px, 3.8vw, 30px); color: var(--brand); letter-spacing: .3px; }
.view-all { font-weight: 700; color: #012465; text-decoration: none; border-bottom: 2px solid transparent; }
.view-all:hover { border-bottom-color: currentColor; }

/* Luxury cards (scoped) scope bhai  */
.lux-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.5vw, 28px); align-items: stretch; }
@media (max-width: 640px) {
  .lux-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
  .lux-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lux-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.lux-card { position: relative; border-radius: 24px; overflow: hidden; background: #eaeef4; isolation: isolate; border: 1px solid rgba(2,12,27,0.06); box-shadow: 0 10px 20px rgba(2,12,27,0.08), 0 25px 60px rgba(2,12,27,0.16); transition: box-shadow .35s ease, transform .35s ease; }
.lux-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(2,12,27,0.10), 0 35px 80px rgba(2,12,27,0.22); }
.lux-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), inset 0 -1px 0 rgba(2,12,27,0.06); }
.lux-card a { display: block; position: relative; color: inherit; text-decoration: none; min-height: clamp(320px, 46vw, 520px); }
.lux-card .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: none; clip-path: inset(0 0 0 0 round 0); transition: clip-path .45s ease-in-out, transform .45s ease-in-out; }
.lux-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,12,29,0.72) 0%, rgba(4,12,29,0.45) 38%, rgba(4,12,29,0) 68%); z-index: 1; opacity: 1; transition: opacity .35s ease; }

/* Glass chip (location) */
.lux-card .chip { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; display: inline-flex; align-items: center; gap: clamp(0.4rem, 1.5vw, 0.6rem); padding: clamp(0.4rem, 1.6vw, 0.55rem) clamp(0.6rem, 2vw, 0.8rem); border-radius: 999px; color: #ffffff; font-weight: 500; font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.18) 100%); border: 1px solid rgba(255,255,255,0.5); -webkit-backdrop-filter: blur(14px) saturate(160%); backdrop-filter: blur(14px) saturate(160%); box-shadow: 0 10px 24px rgba(0,0,0,0.10), inset 0 1px 0 rgba(255,255,255,0.25); pointer-events: none; overflow: hidden; }
/* subtle sheen */
.lux-card .chip::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(120% 100% at 0% 0%, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.08) 35%, rgba(255,255,255,0) 60%); pointer-events: none; }
.lux-card .chip .dot {
  width: clamp(1.05rem, 1.2rem, 1.35rem);
  height: clamp(1.05rem, 1.2rem, 1.35rem);
  background: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s6-9 6-14a6 6 0 10-12 0c0 5 6 14 6 14z"/><circle cx="12" cy="8" r="2.5"/></g></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Quick arrow button */
.lux-card .quick-btn { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2; width: clamp(2.25rem, 6vw, 2.75rem); height: clamp(2.25rem, 6vw, 2.75rem); display: grid; place-items: center; border-radius: 999px; border: 0.0625rem solid rgba(0,0,0,0.08); color: #000; font-weight: 900; font-size: clamp(1rem, 2.2vw, 1.125rem); background: #ffffff; backdrop-filter: blur(0.625rem); box-shadow: 0 0.625rem 1.75rem rgba(0,0,0,0.12), inset 0 0 0 0.0625rem rgba(255,255,255,0.35); transition: box-shadow .3s ease, transform .3s ease, background .2s ease; pointer-events: auto; cursor: pointer; }
.lux-card:hover .quick-btn, .lux-card .quick-btn:focus-visible { transform: translateY(-0.0625rem) scale(1.12); box-shadow: 0 0.875rem 2.25rem rgba(114,177,57,0.35), 0 0 0 0.375rem rgba(114,177,57,0.20); background: rgba(255,255,255,0.9); outline: none; }

/* Optional: subtle press feedback */
.lux-card .quick-btn:active { transform: translateY(0) scale(1.05); }

/* Bottom meta overlay */
.lux-card .meta { position: absolute; z-index: 2; bottom: 18px; left: 18px; right: 18px; display: grid; grid-template-columns: 1fr; align-items: start; gap: 8px; color: #fff; transition: opacity .35s ease; }
.lux-card .meta .num { font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; font-weight: 400; font-size: 1.1rem; opacity: .9; }
.lux-card .meta .text { display: grid; gap: clamp(2px, 1vw, 8px); }
.lux-card .meta .text .title { font-family: inherit; font-weight: 500; letter-spacing: 0.03em; line-height: 1.2; font-size: clamp(1.15rem, 2.6vw, 1.55rem); }
.lux-card .meta .text .sub { opacity: .9; font-size: clamp(1rem, 2.1vw, 1.125rem); margin-top: 0; }

.lux-card:hover .bg { transform: scale(0.96); transform-origin: bottom center; clip-path: inset(44% 6% 6% 6% round 24px); }
.lux-card:hover::after { opacity: 0; }
.lux-card:hover .meta, .lux-card:hover .chip { opacity: 0; }

/* Mobile: increase card height for better readability */
@media (max-width: 640px) {
  .lux-card a { min-height: clamp(420px, 70vh, 560px); }
}

/* Generic grid layout for index cards: 1 column mobile, 2 columns desktop */
.grid { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.5vw, 24px); align-items: stretch; }
@media (min-width: 768px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Top sheet overlay (drops from above on hover) */
.lux-card .sheet { position: absolute; top: 0; left: 0; right: 0; bottom: 38%; z-index: 3; background: rgba(231, 231, 231, 0.96); color: #0b1b2a; transform: translateY(-102%); opacity: 0; transition: transform .45s ease-in-out, opacity .45s ease-in-out; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: grid; align-content: start; pointer-events: none; border-bottom: 1px solid rgba(2,12,27,0.08); border-radius: 22px 22px 0 0; }
.lux-card .sheet .sheet-inner { padding: clamp(14px, 3.6vw, 20px); display: grid; gap: 12px; }
.lux-card .sheet .top-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lux-card .sheet .top-row .left { display: flex; align-items: center; gap: 10px; }
.lux-card .sheet .top-row .num { font-weight: 500; color: #0b1b2a; }
.lux-card .sheet .top-row .badges { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.lux-card .sheet .badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; background: #f0f2f6; color: #0b1b2a; font-size: 12px; border: 1px solid rgba(2,12,27,0.08); }
.lux-card .sheet .price { font-weight: 700; letter-spacing: .3px; }
.lux-card .sheet .divider { height: 1px; background: rgba(2,12,27,0.08); margin: 2px 0; }
.lux-card .sheet .dev { font-size: 12px; color: #5b6570; }
.lux-card .sheet .dev b { color: #0b1b2a; font-weight: 600; }

/* Details + CTA layout */
.lux-card .sheet .lower { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: clamp(10px, 2vw, 16px); }
.lux-card .sheet .details { display: grid; gap: 6px; }
.lux-card .sheet .details .title { font-size: clamp(1.25rem, 2.8vw, 1.6rem); line-height: 1.2; font-weight: 600; color: #0b1b2a; }

.lux-card .sheet .cta-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 8px; width: max-content; }
.lux-card .sheet .cta-card .cta { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(2,12,27,0.15); background: #fff; box-shadow: 0 6px 16px rgba(2,12,27,0.12); font-weight: 800; }
.lux-card .sheet .cta-card { justify-self: end; text-align: center; }
.lux-card .sheet .cta-card .label { font-size: 13px; color: #0b1b2a; opacity: .9; line-height: 1.15; display: block; text-align: center; font-weight: 700; letter-spacing: .2px; }
.lux-card .sheet .title { font-family: inherit; font-weight: 700; font-size: clamp(1.15rem, 2.6vw, 1.55rem); line-height: 1.2; letter-spacing: .01em; }
.lux-card .sheet .cta { margin-left: auto; display: flex; flex-direction: column; align-items: center; gap: 8px; background: #ffffff; border: 1px solid rgba(2,12,27,0.10); padding: 10px 14px; border-radius: 12px; box-shadow: 0 6px 16px rgba(2,12,27,0.10); font-weight: 700; }
.lux-card .sheet .cta .arrow { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; border: 1px solid rgba(2,12,27,0.15); }
.lux-card:hover .sheet { transform: translateY(0); opacity: 1; pointer-events: auto; }

/* Improve link affordance inside sheet */
.lux-card .sheet .cta-card, .lux-card .sheet .details .title { cursor: pointer; }
.lux-card a:hover .sheet .details .title { text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer {
  background: #0c1b2a;
  color: #cfe0f2;
  padding: clamp(36px, 6vw, 72px) 20px 24px;
  margin-top: clamp(40px, 8vw, 100px);
}
.footer-container { width: min(1200px, 92%); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}
.footer-brand { color: #fff; }
.footer-title { color: #fff; font-weight: 800; font-size: clamp(20px, 3.2vw, 28px); margin: 6px 0 10px; }
.footer-text { color: #b9cbe0; line-height: 1.7; }
.footer-meta { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.footer-meta i { color: #72B139; margin-right: 8px; }

.footer-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: clamp(14px, 2.4vw, 20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
}
.ff-row { display: grid; gap: 12px; }
.ff-row.two { grid-template-columns: 1fr 1fr; gap: 12px; }
.ff-group label { display: block; font-weight: 700; color: #e7f1fd; font-size: 0.95rem; margin-bottom: 6px; }
.ff-group input {
  width: 100%;
  padding: 12px 12px;
  background: #0f2236;
  color: #e7f1fd;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.ff-group input::placeholder { color: #a8bed8; }
.ff-group input:focus { border-color: #72B139; box-shadow: 0 0 0 3px rgba(114,177,57,0.25); background: #112943; }
.ff-group input.is-invalid { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,0.20); }

.ff-actions { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.ff-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #72B139; color: #0c1b2a; font-weight: 800;
  padding: 12px 16px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 10px 24px rgba(114,177,57,0.28);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.ff-btn:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(114,177,57,0.36); }
.ff-consent { color: #a8bed8; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.12); margin-top: clamp(20px, 4vw, 28px); padding-top: 16px; }
.footer-bottom p { margin: 0; color: #b9cbe0; }
.footer-links { display: inline-flex; align-items: center; gap: 10px; }
.footer-links a { color: #e7f1fd; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 991.98px) {
  .footer-grid { grid-template-columns: 1fr; }
  .ff-row.two { grid-template-columns: 1fr; }
}
