/* Import Find a Room Page Styles */
@import url('find-a-room.css');

/* Import Terms of Service Page Styles */
@import url('tos.css');

/* Import Team Page Styles */
@import url('team.css');

/* Public Room Detail Page Styles */
.room-detail-main-public {
  margin-left: 0 !important;
  padding: 2rem 1.5rem;
  min-height: 100vh;
}

.room-detail-main-public .room-detail-content {
  max-width: 1200px;
  margin: 0 auto;
}

.room-detail-main-public .room-detail-breadcrumb {
  margin-bottom: 1.5rem;
}

/* Responsive for public room detail */
@media (max-width: 768px) {
  .room-detail-main-public {
    padding: 1rem;
  }

  .room-detail-main-public .room-detail-grid {
    grid-template-columns: 1fr;
  }

  .room-detail-main-public .room-detail-booking-card {
    order: -1;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Initial state - full width at top */
.navbar .nav-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled state - floating pill */
.navbar.navbar-scrolled {
  padding: 0;
}

.navbar.navbar-scrolled .nav-container {
  max-width: 64rem;
  margin: 1rem auto;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255, 255, 255, 0.7);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
}

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

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-login {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 25px;
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-join {
  background: var(--text-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
  border-radius: 25px;
  transition: background 0.2s;
}

.btn-join:hover {
  background: var(--dark-green);
}

/* Authenticated User Menu */
.nav-user-menu {
  position: relative;
}

.nav-user-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 0.4rem 0.75rem 0.4rem 0.4rem;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-user-button:hover {
  border-color: var(--primary-green);
  background: rgba(74, 124, 35, 0.05);
}

.nav-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.nav-user-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-gray);
  transition: transform 0.2s;
}

.nav-user-button[aria-expanded='true'] .nav-chevron {
  transform: rotate(180deg);
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 1000;
}

.nav-user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-user-info {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.nav-user-info-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.nav-user-info-email {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
}

.nav-user-info-role {
  font-size: 0.75rem;
  color: var(--primary-green);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-user-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.5rem 0;
}

.nav-user-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.nav-user-menu-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-gray);
}

.nav-user-menu-item:hover {
  background: rgba(74, 124, 35, 0.05);
}

.nav-user-menu-item:hover svg {
  color: var(--primary-green);
}

.nav-user-logout {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.nav-user-logout:hover {
  background: rgba(220, 53, 69, 0.05);
}

.nav-user-logout:hover svg {
  color: #dc3545;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 9rem;
}

.hero-background {
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(at 25% -12%, rgba(255, 226, 178, 0.8) 0%, transparent 50%),
    radial-gradient(at 75% -1%, rgba(78, 237, 80, 0.39) 0%, transparent 50%);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

/* Hero Announcement Pill */
.hero-announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem 0.375rem 0.375rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

.hero-announcement-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-dark);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.announcement-text {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

.announcement-icon {
  color: var(--text-gray);
  display: flex;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-landlords {
  background: var(--white);
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 25px;
  border: 2px solid var(--primary-green);
  transition: all 0.2s;
}

.btn-landlords:hover {
  background: var(--bg-green);
}

.btn-download {
  background: var(--primary-green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 25px;
  transition: background 0.2s;
}

.btn-download:hover {
  background: var(--dark-green);
}

/* App Preview Section */
.app-preview-section {
  width: 100%;
  margin-top: -4rem;
  position: relative;
  pointer-events: none;
}

.app-preview-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.app-preview-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Find a Room Section */
.find-room-section {
  width: 100%;
  padding: 5rem 1.5rem;
  background: var(--white);
}

.find-room-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.find-room-badge {
  display: inline-block;
  background: var(--bg-green);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.find-room-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-gray);
  max-width: 64rem;
  margin: 0;
}

.find-room-description strong {
  color: var(--text-dark);
  font-weight: 600;
}

.find-room-image-wrapper {
  width: 80%;
  max-width: 800px;
  border-radius: 1rem;
  overflow: hidden;
  margin: 1rem auto 0;
}

.find-room-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

/* Find Room Map Styles */
.find-room-map-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.find-room-map {
  width: 100%;
  height: 500px;
  z-index: 1;
  border-radius: 1rem;
}

.find-room-map-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.find-room-map-control-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.find-room-map-control-btn:hover {
  background: var(--bg-green);
  border-color: var(--primary-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.find-room-map-control-btn:active {
  transform: scale(0.95);
}

.find-room-map-control-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
}

.find-room-map-control-btn:hover svg {
  color: var(--primary-green);
}

/* Vision Section */
.vision-section {
  width: 100%;
  padding: 5rem 1.5rem;
  background: var(--white);
  position: relative;
}

/* Dashed Top Fade Grid Background */
.vision-grid-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(to right, #e7e5e4 1px, transparent 1px),
    linear-gradient(to bottom, #e7e5e4 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 0 0;
  mask-image: repeating-linear-gradient(
      to right,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px
    ),
    repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px),
    radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
  -webkit-mask-image: repeating-linear-gradient(
      to right,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px
    ),
    repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px),
    radial-gradient(ellipse 70% 60% at 50% 0%, #000 60%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.vision-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.vision-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 64rem;
}

.vision-badge {
  display: inline-block;
  background: var(--bg-green);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.vision-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}

.vision-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin: 0;
  max-width: 48rem;
  line-height: 1.6;
}

.vision-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  background: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.vision-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border-color);
  background: var(--white);
}

.vision-card-icon {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.vision-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.vision-card:first-child .vision-card-title {
  text-decoration: underline;
  text-decoration-color: var(--primary-green);
  text-underline-offset: 0.25rem;
}

.vision-card-description {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.vision-card:first-child .vision-card-description {
  text-decoration: underline;
  text-decoration-color: var(--text-gray);
  text-underline-offset: 0.25rem;
}

/* Gradient overlays for each card */
.vision-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  pointer-events: none;
}

.vision-card-orange::after {
  background: linear-gradient(to top, rgba(255, 200, 100, 0.3), transparent);
}

.vision-card-green::after {
  background: linear-gradient(to top, rgba(78, 237, 80, 0.25), transparent);
}

.vision-card-blue::after {
  background: linear-gradient(to top, rgba(100, 180, 255, 0.3), transparent);
}

/* FAQ Section */
.faq-section {
  width: 100%;
  padding: 5rem 1.5rem;
  background: #f8f9fa;
}

.faq-container {
  max-width: 72rem;
  margin: 0 auto;
}

.faq-header {
  text-align: left;
  margin-bottom: 3rem;
}

.faq-badge {
  display: inline-block;
  background: var(--bg-green);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.faq-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin: 0;
  max-width: 48rem;
  line-height: 1.6;
}

/* Category Tabs */
.faq-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0;
}

.faq-tab {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.faq-tab:hover {
  color: var(--text-dark);
}

.faq-tab.active {
  color: var(--text-dark);
  font-weight: 600;
}

.faq-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-green);
  border-radius: 2px 2px 0 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

/* Left Column - Image Card */
.faq-image-column {
  position: sticky;
  top: 2rem;
}

.faq-image-card {
  background: var(--white);
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-image {
  width: 100%;
  height: auto;
  display: block;
}

.faq-cta-text {
  padding: 1.5rem;
}

.faq-cta-text p {
  margin: 0 0 1rem;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.5;
}

.faq-cta-text strong {
  font-weight: 600;
}

.btn-contact-us {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: background 0.2s;
}

.btn-contact-us:hover {
  background: var(--dark-green);
}

/* Right Column - FAQ Accordion */
.faq-accordion-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: opacity 0.2s, transform 0.2s;
}

.faq-item.hidden {
  display: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  padding-right: 1rem;
}

.faq-toggle-icon {
  color: var(--text-gray);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--primary-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    padding: 0;
  }

  .navbar.scrolled {
    padding: 0;
  }

  .navbar .nav-container {
    padding: 0.75rem 1rem;
  }

  .navbar.scrolled .nav-container {
    max-width: 100%;
    margin: 0.5rem 0;
    border-radius: 25px;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 1rem 0;
  }

  .hero-announcement-pill {
    padding: 0.25rem 0.625rem 0.25rem 0.25rem;
    gap: 0.375rem;
    margin-bottom: 1rem;
  }

  .announcement-badge {
    font-size: 0.5rem;
    padding: 0.125rem 0.375rem;
  }

  .announcement-text {
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-preview-section {
    padding: 1.5rem 0;
  }

  .app-preview-container {
    padding: 0 1rem;
  }

  .find-room-section {
    padding: 3rem 1rem;
  }

  .find-room-description {
    font-size: 1rem;
  }

  .find-room-map-wrapper {
    margin: 1.5rem 0;
  }

  .find-room-map {
    height: 350px;
  }

  .find-room-map-controls {
    top: 0.75rem;
    right: 0.75rem;
  }

  .find-room-map-control-btn {
    width: 36px;
    height: 36px;
  }

  .find-room-image-wrapper {
    border-radius: 0.75rem;
  }

  .vision-section {
    padding: 3rem 1rem;
  }

  .vision-title {
    font-size: 2rem;
  }

  .vision-subtitle {
    font-size: 1rem;
  }

  .vision-cards-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .vision-card {
    min-height: 280px;
    padding: 1.5rem;
  }

  .vision-card-title {
    font-size: 1.25rem;
  }

  .vision-card-description {
    font-size: 0.9rem;
  }

  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .faq-tabs::-webkit-scrollbar {
    display: none;
  }

  .faq-tab {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }

  .faq-image-column {
    position: static;
  }

  .faq-question {
    padding: 1rem 1.25rem;
  }

  .faq-question-text {
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
  }
}

/* Footer Section */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
  width: 100%;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo .logo-text {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: color 0.2s;
}

.social-link:hover {
  color: var(--primary-green);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
  display: inline-block;
}

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

.footer-column-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

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

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

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

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.813rem;
  color: var(--text-gray);
}

.footer-copyright p {
  margin: 0;
}

.heart-icon {
  color: var(--primary-green);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.813rem;
  transition: color 0.2s;
}

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

.footer-legal .separator {
  color: var(--text-gray);
  font-size: 0.813rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}
