/* ============================================
   RENTSPACE - PREMIUM APP STYLE
   ============================================ */
    
:root {
  --gold: #D4AF37; /* Premium metallic gold */
  --gold-dark: #b88f3c;
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --border: rgba(212, 175, 55, 0.2);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 30% 10%, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--text-primary);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: 14px;
  min-height: 100vh;
  animation: appFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes appFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SPLASH SCREEN ========== */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.splash-logo {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.splash-logo span {
  color: var(--gold);
}

.splash-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.splash-dots span {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.4s infinite;
}

.splash-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.splash-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ========== EXECUTIVE NAVBAR ========== */
.exec-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.nav-logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 4px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo span {
  color: var(--gold);
  font-weight: 400;
}

/* Desktop navigation */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 400;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: #000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========== DESKTOP DROPDOWN ========== */
@media (min-width: 769px) {
  .dropdown {
    position: relative;
  }
  
  .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .dropdown-trigger i {
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  
  .dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #111111;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-menu li {
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
  }
  
  .dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding-left: 24px;
  }
  
  .dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* ========== MOBILE NAVIGATION ========== */
@media (max-width: 768px) {
  /* Hide desktop CTA */
  .nav-cta {
    display: none;
  }
  
  /* Show hamburger */
  .hamburger {
    display: flex;
  }
  
  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Mobile Menu Panel */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 80px 24px 24px;
    display: flex;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    margin: 0;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links a:hover {
    color: var(--gold);
    padding-left: 8px;
  }
  
  /* Mobile Dropdown Menu */
  .dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .dropdown-trigger i {
    color: var(--gold);
    font-size: 12px;
    transition: transform 0.3s ease;
  }
  
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.08);
    border-left: 2px solid var(--gold);
    padding: 0;
    margin: 8px 0 8px 16px;
    display: none;
  }
  
  .dropdown-menu.open {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 10px 0 10px 16px;
    font-size: 15px;
    border-bottom: none;
  }
  
  .dropdown-menu a:hover {
    color: var(--gold);
    padding-left: 20px;
  }
  
  .dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
  }
  
  /* Mobile bottom nav */
  .mobile-bottom-nav {
    display: flex;
  }
  
  body {
    padding-bottom: 70px;
  }
}

/* Desktop hide hamburger */
@media (min-width: 769px) {
  .hamburger {
    display: none !important;
  }
}

/* ========== CINEMATIC HERO WITH SLIDER ========== */
.app-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0b;
}

/* Slider Container */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 2s ease-in-out;
  transform: scale(1.08);
}

.slide.active {
  opacity: 1;
  animation: kenBurns 12s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

/* Premium Overlay - Radial Gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 10, 11, 0.3) 0%, rgba(10, 10, 11, 0.8) 100%);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  width: 100%;
}

.hero-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 8px;
  animation: fadeInDown 1s ease forwards;
}

.hero-title {
  color: var(--text-primary);
  font-size: clamp(2.5rem, 8vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-title span {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* Premium Search Pill */
.search-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  padding: 16px 40px;
  border-radius: 50px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  animation: fadeInUp 1.2s ease 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.search-pill i {
  color: var(--gold);
  font-size: 14px;
}

.search-pill span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.search-pill:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.search-pill:hover i,
.search-pill:hover span {
  color: #000;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gold Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 4;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 7000ms linear;
}

/* Premium Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollPass 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollPass {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* Hide scroll indicator on short screens */
@media (max-height: 700px) {
  .scroll-indicator {
    display: none;
  }
}

/* ========== RESPONSIVE HERO ========== */
@media (max-width: 768px) {
  .app-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .hero-tag {
    letter-spacing: 0.4em;
    font-size: 9px;
    margin-bottom: 15px;
  }
  
  .search-pill {
    padding: 14px 30px;
    width: 80%;
    justify-content: center;
  }
  
  .search-pill span {
    font-size: 11px;
  }
  
  .slide.active {
    animation: kenBurnsMobile 12s ease-out forwards;
  }
  
  @keyframes kenBurnsMobile {
    from {
      transform: scale(1.05);
    }
    to {
      transform: scale(1);
    }
  }
  
  .estate-card {
    min-width: 75px;
  }
  
  .estate-circle {
    width: 70px;
    height: 70px;
  }
  
  .estate-label {
    font-size: 9px;
  }
}

/* ========== FLOATING ESTATE CATEGORY BAR ========== */
.category-container {
  position: relative;
  margin-top: -50px;
  z-index: 10;
  padding-bottom: 2rem;
}

.estate-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 5%;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.estate-scroll::-webkit-scrollbar {
  display: none;
}

.estate-card {
  min-width: 90px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.estate-circle {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  overflow: hidden;
  margin: 0 auto 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  background: #1a1a1a;
  transition: var(--transition);
}

.estate-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.9);
  transition: transform 0.5s ease;
}

.estate-card:hover {
  transform: translateY(-6px);
}

.estate-card:hover .estate-circle {
  border-color: var(--gold);
}

.estate-card:hover .estate-circle img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.1);
}

.estate-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ========== DASHBOARD SECTIONS ========== */
.dashboard {
  padding: 2rem 5% 4rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.section-link {
  font-size: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: var(--transition);
}

.section-link:hover {
  color: var(--gold);
}

/* Action Tiles */
.action-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .action-tiles {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.tile {
  position: relative;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.tile span {
  position: relative;
  z-index: 2;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 18px;
  color: #fff;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* Featured Properties Preview */
.featured-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.featured-scroll::-webkit-scrollbar {
  height: 4px;
}

.featured-scroll::-webkit-scrollbar-track {
  background: var(--border);
  border-radius: 4px;
}

.featured-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.featured-card {
  min-width: 260px;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: var(--transition);
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.featured-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.featured-info {
  padding: 12px;
}

.featured-info h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.featured-info p {
  font-size: 11px;
  color: var(--gold);
}

/* ========== PREMIUM FOOTER ========== */
.premium-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 3rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.footer-bottom i {
  color: var(--gold);
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  justify-content: space-around;
  padding: 12px 0;
  z-index: 999;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 10px;
  transition: var(--transition);
}

.mobile-bottom-nav a i {
  font-size: 20px;
}

.mobile-bottom-nav a.active {
  color: var(--gold);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
}

/* ========== CINEMATIC HERO WITH SLIDER - WORKING ========== */
.app-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0b;
}

/* Slider Container */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.08);
}

.slide.active {
  opacity: 1;
  animation: kenBurns 12s ease-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* Premium Overlay - Radial Gradient */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 11, 0.2) 0%, rgba(10, 10, 11, 0.75) 100%);
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  width: 100%;
}

.hero-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 8px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  color: var(--text-primary);
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-title span {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* Premium Search Pill */
.search-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  padding: 16px 40px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.search-pill i {
  color: var(--gold);
  font-size: 14px;
}

.search-pill span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.search-pill:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.search-pill:hover i,
.search-pill:hover span {
  color: #000;
}

/* Fade Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gold Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* Premium Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-text {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollPass 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes scrollPass {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

/* Hide scroll indicator on short screens */
@media (max-height: 700px) {
  .scroll-indicator {
    display: none;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .app-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .title2{
    font-size: large;
  }
  
  .hero-tag {
    letter-spacing: 0.3em;
    font-size: 9px;
    margin-bottom: 12px;
  }
  
  .search-pill {
    padding: 12px 28px;
  }
  
  .search-pill span {
    font-size: 10px;
  }
  
  .slide.active {
    animation: kenBurnsMobile 12s ease-out forwards;
  }
  
  @keyframes kenBurnsMobile {
    from {
      transform: scale(1.05);
    }
    to {
      transform: scale(1);
    }
  }
}

.r-sup {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}
.r-sup { font-size: 0.65rem; vertical-align: super; }