@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #040609;
  --bg-secondary: #090e17;
  --bg-card: rgba(15, 23, 36, 0.7);
  --bg-card-hover: rgba(22, 34, 52, 0.9);
  --color-green: #22c55e;
  --color-green-dark: #15803d;
  --color-green-accent: #10b981;
  --color-orange: #f97316;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-green: rgba(34, 197, 94, 0.4);
  --glow-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
  --font-display: 'Outfit', 'Noto Sans KR', sans-serif;
  --font-body: 'Noto Sans KR', 'Inter', sans-serif;
}

/* Global Reset & Base Styling */
html, body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-green);
}

/* Accent Color Utilities */
.accent-green {
  color: var(--color-green);
}
.accent-orange {
  color: var(--color-orange);
}

/* ----------------------------------------------------
   1. FRIENDS SCREEN STYLE TOP CAPSULE HEADER
---------------------------------------------------- */
.header-capsule-wrapper {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.header-capsule-bar {
  width: 100%;
  max-width: 1480px;
  height: 66px;
  background: rgba(10, 14, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 2px rgba(255, 255, 255, 0.1) inset;
  transition: all 0.3s ease;
}

.header-capsule-wrapper.scrolled .header-capsule-bar {
  background: rgba(6, 9, 15, 0.96);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), var(--glow-shadow);
}

/* Header Logo */
.logo-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.2rem 0;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-btn:hover .logo-img {
  transform: scale(1.04);
}

/* Center Navigation Menus */
.nav-links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex: 1;
  margin: 0 1.2rem;
}

.nav-link-btn {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: -0.2px;
  color: #e2e8f0;
  text-decoration: none;
  padding: 0.4rem 0.15rem;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link-btn:hover {
  color: #ffffff;
}

.nav-link-btn:hover::after {
  width: 100%;
}

/* Header Dropdown Menu (Screen Golf Service Submenu) */
.nav-dropdown-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 240px;
  background: rgba(10, 14, 22, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 14px;
  padding: 0.6rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  pointer-events: none;
}

.nav-dropdown-item:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
  pointer-events: auto;
}

.dropdown-link-item {
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: transparent;
}

.dropdown-link-item:hover {
  background: rgba(34, 197, 94, 0.12);
}

.dropdown-link-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.dropdown-link-item:hover .dropdown-link-title {
  color: var(--color-green);
}

.dropdown-link-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* Header Auth Login Button */
.btn-capsule-login {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0.45rem 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-capsule-login:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ----------------------------------------------------
   2. FLOATING SIDE QUICK MENU (RIGHT SIDE)
---------------------------------------------------- */
.floating-side-menu {
  position: fixed;
  right: 24px;
  bottom: 110px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-menu-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(15, 23, 36, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.side-menu-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: #1e293b;
  border-color: var(--color-green);
  box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
  color: var(--color-green);
}

.side-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.side-menu-label {
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.side-menu-btn.top-btn {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}

.side-menu-btn.top-btn:hover {
  background: var(--color-green);
  color: #ffffff;
  border-color: var(--color-green);
}

/* ----------------------------------------------------
   3. HERO SECTION (FRIENDS SCREEN QUANTUM LAYOUT)
---------------------------------------------------- */
.hero-quantum-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background: url('../images/hero_parkgolf_quantum.png') no-repeat center center / cover;
  padding: 140px 4rem 120px 4rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(4, 6, 9, 0.92) 0%, rgba(4, 6, 9, 0.75) 45%, rgba(4, 6, 9, 0.4) 100%),
              radial-gradient(circle at 70% 50%, transparent 20%, rgba(4, 6, 9, 0.8) 90%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}

.hero-text-wrapper {
  max-width: 780px;
}

.hero-sub-tag {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  transition: opacity 0.3s ease;
}

.hero-main-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  transition: opacity 0.3s ease;
}

.hero-desc-text {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 620px;
  transition: opacity 0.3s ease;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.btn-hero-inquiry {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: #090e17;
  background: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-hero-inquiry:hover {
  background: var(--color-green);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.4);
}

.btn-hero-outline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 0.9rem 2.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
}

/* Hero Slider Navigation Arrows */
.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(15, 23, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.hero-arrow-btn:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  transform: translateY(-50%) scale(1.1);
}

.hero-arrow-btn.prev { left: 24px; }
.hero-arrow-btn.next { right: 24px; }

/* Hero Slide Indicators */
.hero-indicators {
  position: absolute;
  bottom: 120px;
  left: 4rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--color-green);
  width: 60px;
}

/* Hero Scroll Mouse Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--color-green);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: mouseScroll 1.8s infinite ease-in-out;
}

@keyframes mouseScroll {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* ----------------------------------------------------
   4. STICKY BOTTOM INQUIRY BANNER (FRIENDS SCREEN STYLE)
---------------------------------------------------- */
.bottom-inquiry-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #0d121a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 998;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

.inquiry-banner-container {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.inquiry-brand-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
}

.inquiry-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.inquiry-contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inquiry-contact-phone .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.inquiry-contact-phone .phone-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.inquiry-privacy-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.inquiry-privacy-check input[type="checkbox"] {
  accent-color: var(--color-green);
  cursor: pointer;
}

.privacy-detail-link {
  color: #94a3b8;
  text-decoration: underline;
  margin-left: 2px;
}

.inquiry-form-inputs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-grow: 1;
  max-width: 820px;
}

.inquiry-input {
  background: #1a222e;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.65rem 1rem;
  color: #ffffff;
  font-size: 0.9rem;
  flex: 1;
  outline: none;
  transition: border-color 0.25s ease;
}

.inquiry-input:focus {
  border-color: var(--color-green);
}

.inquiry-input.select {
  cursor: pointer;
  color: #cbd5e1;
}

.inquiry-input option {
  background: #0f172a;
  color: #ffffff;
}

.btn-inquiry-submit {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #040609;
  background: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.btn-inquiry-submit:hover {
  background: var(--color-green);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

/* ----------------------------------------------------
   5. HOMEPAGE CONTENT SECTIONS
---------------------------------------------------- */
.ypark-section {
  padding: 110px 2rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ypark-section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-container {
  max-width: 1340px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--color-green);
  padding: 0.4rem 1.25rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grid Layouts & Feature Cards */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-green);
  transform: translateY(-5px);
  box-shadow: var(--glow-shadow);
}

.feature-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Course Cards */
.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-green);
  box-shadow: var(--glow-shadow);
}

.course-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.course-card:hover .course-img {
  transform: scale(1.08);
}

.course-par-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(4, 6, 9, 0.85);
  border: 1px solid var(--color-green);
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.course-info-body {
  padding: 1.5rem;
}

.course-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.course-location {
  font-size: 0.85rem;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
}

/* Store Locator Controls */
.store-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.store-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.store-region-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 0.55rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.store-region-tab.active, .store-region-tab:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #ffffff;
}

.store-search-box {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 380px;
}

.store-search-input {
  background: rgba(15, 23, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 0.55rem 1.25rem;
  color: #ffffff;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
}

.store-search-input:focus {
  border-color: var(--color-green);
}

.store-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.store-card-item:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
}

.store-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-badge-open {
  background: rgba(34, 197, 94, 0.15);
  color: var(--color-green);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
}

.store-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.store-phone {
  font-size: 0.88rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
}

/* Event Cards */
.event-glass-card {
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.9) 0%, rgba(22, 34, 52, 0.7) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.event-glass-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25);
}

.event-status-tag {
  display: inline-block;
  background: var(--color-orange);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.event-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.event-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.event-prize {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-green);
}

/* Startup Step Cards */
.startup-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.startup-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-green);
  color: #040609;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.startup-step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.startup-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ----------------------------------------------------
   6. FOOTER STYLING
---------------------------------------------------- */
.footer-ypark {
  background: #030508;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 2rem 8rem 2rem; /* extra padding bottom for inquiry banner */
}

.footer-container {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-company-info {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-anchor {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-link-anchor:hover {
  color: var(--color-green);
}

.footer-bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal-anchor {
  color: #94a3b8;
  text-decoration: none;
}

.footer-legal-anchor:hover {
  color: var(--color-green);
}

/* Modals */
.ypark-modal-content {
  background: #0d131f;
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #ffffff;
  border-radius: 16px;
}

.ypark-modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
}

.ypark-modal-body {
  padding: 1.5rem;
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.ypark-modal-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
}

/* Media Queries */
@media (max-width: 1400px) {
  .nav-links-container { gap: 0.85rem; margin: 0 0.8rem; }
  .nav-link-btn { font-size: 0.82rem; }
}

@media (max-width: 1180px) {
  .nav-links-container { gap: 0.55rem; margin: 0 0.5rem; }
  .nav-link-btn { font-size: 0.78rem; }
  .grid-4col { grid-template-columns: repeat(2, 1fr); }
  .grid-3col { grid-template-columns: 1fr; }
  .inquiry-banner-container { flex-direction: column; height: auto; padding: 1rem 0; }
  .bottom-inquiry-banner { height: auto; padding: 1rem; }
  .inquiry-form-inputs { flex-wrap: wrap; width: 100%; }
}

@media (max-width: 992px) {
  .header-capsule-bar { flex-wrap: wrap; height: auto; padding: 0.75rem 1rem; }
  .nav-links-container { display: none; } /* Mobile navbar collapse */
  .grid-2col { grid-template-columns: 1fr; gap: 2rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .floating-side-menu { right: 12px; bottom: 180px; }
  .side-menu-btn { width: 54px; height: 54px; }
}

/* ----------------------------------------------------
   10. FRANCHISE OWNER MEMBER PAGE & POINT RECHARGE STYLES
---------------------------------------------------- */
.member-page-wrapper {
  padding-top: 100px;
  padding-bottom: 80px;
}

.member-hero-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(9, 14, 23, 0.9));
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 24px;
  padding: 2.2rem 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(34, 197, 94, 0.15);
}

.stat-glass-card {
  background: rgba(15, 23, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.stat-glass-card.primary-glow {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, rgba(15, 23, 36, 0.9), rgba(16, 185, 129, 0.1));
}

.stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-label {
  font-size: 0.82rem;
  color: #94a3b8;
  display: block;
  margin-bottom: 2px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.owner-section-card {
  background: rgba(15, 23, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem 1.75rem;
  backdrop-filter: blur(12px);
}

.owner-section-card.primary-border {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-header-styled {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.info-label {
  color: #94a3b8;
}

.point-balance-banner {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.15), rgba(15, 23, 36, 0.8));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.amount-option-card {
  background: rgba(9, 14, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.amount-option-card:hover {
  border-color: rgba(34, 197, 94, 0.6);
  transform: translateY(-2px);
}

.amount-option-card.active {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.15), rgba(15, 23, 36, 0.9));
  border: 2px solid var(--color-green);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.25);
}

.amount-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.bonus-badge {
  font-size: 0.72rem;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: 6px;
}

.price-val {
  font-size: 0.8rem;
  color: #94a3b8;
}

.popular-tag {
  position: absolute;
  top: -8px;
  right: 10px;
  background: var(--color-green);
  color: #000000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 10px;
}

.popular-tag.max {
  background: #f97316;
  color: #ffffff;
}

.pay-method-card {
  background: rgba(9, 14, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.88rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pay-method-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.pay-method-card.active {
  background: rgba(34, 197, 94, 0.12);
  border-color: var(--color-green);
  color: var(--color-green);
  font-weight: 700;
}

.custom-transaction-table th {
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-transaction-table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-support-card {
  background: rgba(15, 23, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-support-card:hover {
  background: rgba(22, 34, 52, 0.9);
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-3px);
}

.support-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.support-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.support-desc {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.4;
}