/* ===== VARIABLES ===== */
:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161f;
  --surface: #1c1c28;
  --surface2: #22222f;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);
  --accent: #f0b429;
  --accent2: #ff6b35;
  --accent3: #6c63ff;
  --text-primary: #f0efe8;
  --text-secondary: #8b8a99;
  --text-muted: #555566;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(240, 180, 41, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.15s ease,
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  transform: translate(-50%, -50%);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--surface2);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: #000;
  padding: 9px 22px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 99px;
  transition: var(--transition);
  display: block;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  transition: color var(--transition);
}
.mobile-menu a:hover {
  color: var(--accent);
}

/* ===== SECTION BASE ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(240, 180, 41, 0.12);
  color: var(--accent);
  border: 1px solid rgba(240, 180, 41, 0.25);
  padding: 5px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1555854877-bab0e564b8d5?w=1600&q=80")
    center/cover no-repeat;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.97) 0%,
    rgba(10, 10, 15, 0.85) 40%,
    rgba(10, 10, 15, 0.7) 70%,
    rgba(10, 10, 15, 0.92) 100%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 8s ease-in-out infinite;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(240, 180, 41, 0.12),
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent 70%);
  bottom: -50px;
  left: -100px;
  animation-delay: 3s;
}

.orb3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.08),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 30px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 700px;
  padding: 120px 48px 80px;
  animation: heroReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.2);
  color: var(--accent);
  padding: 7px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  animation: heroReveal 1s 0.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: heroReveal 1s 0.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.title-outline {
  -webkit-text-stroke: 1.5px var(--text-primary);
  color: transparent;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  animation: heroReveal 1s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
  animation: heroReveal 1s 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #000;
  border: none;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "DM Sans", sans-serif;
}

.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(240, 180, 41, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-light);
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: "DM Sans", sans-serif;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: heroReveal 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  font-family: "Playfair Display", serif;
  letter-spacing: -0.5px;
  line-height: 1;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--text-muted);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 32px;
  animation: marquee 20s linear infinite;
}

.marquee-inner span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== PRICING ===== */
#fees {
  background: var(--bg2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card:hover::before {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.pricing-card.featured {
  background: linear-gradient(
    135deg,
    var(--surface) 0%,
    rgba(240, 180, 41, 0.08) 100%
  );
  border-color: rgba(240, 180, 41, 0.25);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.featured-label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.pricing-tier {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 28px;
}

.amount-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
}

.amount-value {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -1px;
}

.amount-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feat-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  width: 18px;
  height: 18px;
  background: rgba(240, 180, 41, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "DM Sans", sans-serif;
}

.pricing-btn:hover,
.pricing-card.featured .pricing-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* ===== LEAVE SECTION ===== */
#leave {
  background: var(--bg);
}

.leave-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.leave-info .section-title {
  text-align: left;
}

.leave-info .section-tag,
.leave-info .section-subtitle {
  display: block;
  text-align: left;
}

.leave-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.lf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.lf-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.lf-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.lf-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== GLASS CARD (FORM) ===== */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.glass-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: "DM Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 180, 41, 0.25);
}

.success-banner {
  margin-top: 16px;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.25);
  color: #34c759;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== AUTH SECTION ===== */
#auth {
  background: var(--bg2);
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.auth-visual {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.av-circle {
  position: absolute;
  border-radius: 50%;
}
.av-c1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(240, 180, 41, 0.15),
    transparent 70%
  );
  top: -80px;
  right: -80px;
}
.av-c2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(108, 99, 255, 0.15),
    transparent 70%
  );
  bottom: -40px;
  left: -40px;
}
.av-c3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1), transparent 70%);
  top: 50%;
  left: 30%;
}

.av-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.av-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
}

.av-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto 28px;
}

.av-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.av-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.av-dots span:first-child {
  background: var(--accent);
  width: 24px;
  border-radius: 99px;
}

.auth-form-area {
  padding: 48px;
  background: var(--surface);
}

.auth-tabs {
  display: flex;
  background: var(--bg);
  border-radius: 99px;
  padding: 4px;
  margin-bottom: 32px;
  position: relative;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 99px;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
}

.auth-tab.active {
  color: #000;
}

.auth-tab-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--accent);
  border-radius: 99px;
  transition: transform var(--transition);
}

.auth-tab-indicator.right {
  transform: translateX(100%);
}

.auth-form h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.auth-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 28px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.input-with-icon input {
  padding-left: 40px !important;
}

.toggle-pass {
  position: absolute;
  right: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.toggle-pass:hover {
  opacity: 1;
}

.auth-error {
  font-size: 0.82rem;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  min-height: 0;
}

.auth-error.error {
  color: #ff453a;
  background: rgba(255, 69, 58, 0.1);
  border: 1px solid rgba(255, 69, 58, 0.2);
}

.auth-error.success {
  color: #34c759;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.2);
}

/* Password strength */
.password-strength {
  height: 4px;
  background: var(--border);
  border-radius: 99px;
  margin-bottom: 8px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0;
  border-radius: 99px;
  transition:
    width 0.3s,
    background 0.3s;
}

.strength-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== LOCATION ===== */
#location {
  background: var(--bg);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.loc-item:hover {
  border-color: var(--border-light);
  transform: translateX(4px);
}

.loc-icon {
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  background: rgba(240, 180, 41, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loc-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.loc-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
}

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

footer > .footer-inner > p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===== INPUT DATE COLOR FIX ===== */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  .leave-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .auth-wrapper {
    grid-template-columns: 1fr;
  }
  .auth-visual {
    display: none;
  }
  .location-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #navbar {
    padding: 16px 24px;
  }
  #navbar.scrolled {
    padding: 12px 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section-container {
    padding: 70px 24px;
  }
  .hero-content {
    padding: 120px 24px 80px;
  }
  .hero-scroll-hint {
    left: 24px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .glass-card {
    padding: 28px 20px;
  }
  .auth-form-area {
    padding: 32px 24px;
  }
  footer {
    padding: 36px 24px;
  }
}
