/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *

 */

:root {
  --primary-color: #98ee99; /* Mint Green from mockup */
  --primary-hover: #7cd97d;
  --secondary-color: #00a8cc;
  --text-color: #111111;
  --text-muted: #555555;
  --bg-color: #ffffff;
  --bg-alt: #f0f8ff; /* Light blue-ish for background sections */
  --border-color: #eeeeee;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --font-family: 'Outfit', sans-serif;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #111;
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(152, 238, 153, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: #333;
  color: #333;
}

.btn-outline:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  height: 90px;
  display: flex;
  align-items: center;
  background: #fff;
  z-index: 1000;
  position: relative;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.nav-link {
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  color: var(--text-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar-toggle span {
  width: 30px;
  height: 3px;
  background: #111;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  display: flex;
  min-height: 600px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero-map-container {
  flex: 1.2;
  height: 600px;
  display: flex;
}

.map-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.map-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
  font-size: 0.875rem;
}

.map-filter-bar label {
  font-weight: 600;
  white-space: nowrap;
}

.map-filter-bar input[type="text"] {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 0.875rem;
  background: #fff;
  width: 140px;
}

.map-filter-bar input[type="text"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(152, 238, 153, 0.2);
}

.map-filter-count {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.8rem;
}

#map {
  flex: 1;
  min-height: 0;
  width: 100%;
}
.map-list-sidebar {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.sidebar-mobile-header {
  display: none;
  padding: 12px 20px 8px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.sidebar-toggle-btn {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 4px 16px;
  background: #f1f3f5;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.sidebar-title-row h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

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

.sidebar-scroll-area {
  flex: 1;
  overflow-y: auto;
}

.playground-list-item {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.playground-list-item:hover,
.playground-list-item.highlighted {
  background: var(--bg-alt);
}

.playground-list-item .pli-name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--text-color);
}

.playground-list-item .pli-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}


.hero-content {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-cta-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #555;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
  z-index: 1;
}

.hero-cta-close:hover {
  background: rgba(0, 0, 0, 0.18);
}

/* Decorative Waves at top of content */
.hero-decor-waves {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 120px;
  z-index: 0;
  pointer-events: none;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Big Wave Divider below hero */
.hero-bottom-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  pointer-events: none;
}

.hero-bottom-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Features Section */
.features {
  padding: 120px 0 100px;
  background-color: var(--bg-alt); /* Light blue background for features */
  text-align: center;
  position: relative;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
}

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

.feature-card {
  padding: 40px 30px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.feature-icon {
  width: 140px;
  height: 140px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img, .feature-icon svg {
  max-width: 100%;
  max-height: 100%;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Static Pages (About, Contact, etc.) */
.static-page {
  padding-bottom: 80px;
}

.static-hero {
  background-color: var(--bg-alt);
  padding: 80px 0;
  text-align: center;
  margin-bottom: 60px;
}

.static-hero h1 {
  font-size: 3rem;
  margin-bottom: 0;
}

.static-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
}

.static-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.static-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.static-content ul, .static-content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.static-content li {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.static-content strong {
  color: var(--text-color);
}

.static-content-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

/* Playground Detail Page */
.playground-show {
  padding-bottom: 80px;
}

.playground-hero {
  background-color: var(--bg-alt);
  padding: 60px 0 40px;
  margin-bottom: 40px;
}

.playground-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.playground-title-area h1 {
  font-size: 2.75rem;
  margin-bottom: 10px;
}

.playground-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rating-badge {
  background: var(--primary-color);
  color: #111;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.playground-main-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.playground-visual-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.satellite-embed-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.satellite-embed-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.playground-description-card {
  padding: 30px;
  border-top: 1px solid var(--border-color);
}

.playground-description-card h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.playground-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

/* Comments Section */
.comments-section {
  margin-top: 20px;
}

.comment-card {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.comment-user {
  font-weight: 700;
  font-size: 1.05rem;
}

.comment-date {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comment-rating {
  font-size: 0.85rem;
  font-weight: 600;
  color: #111;
  background: #fff9c4;
  padding: 3px 8px;
  border-radius: 5px;
}

.comment-content {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Comment Form */
.comment-form-card {
  background: #fcfcfc;
  padding: 30px;
  border-radius: 20px;
  border: 2px dashed var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-control, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.admin-actions {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .playground-main-grid {
    grid-template-columns: 1fr;
  }
  
  .playground-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .satellite-embed-container {
    height: 400px;
  }
  
  .playground-title-area h1 {
    font-size: 2.25rem;
  }
}

/* Flash Messages */
.flash {
  padding: 15px 25px;
  margin: 20px 0;
  border-radius: 10px;
  font-weight: 600;
}

.flash-notice {
  background-color: #e8f5e9;
  color: #2e7d32;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.1);
}

.flash-alert {
  background-color: #ffebee;
  color: #c62828;
  box-shadow: 0 4px 10px rgba(198, 40, 40, 0.1);
}

/* Footer */
.footer {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
}

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

/* Mobile Responsive */
@media (max-width: 992px) {
  .navbar {
    height: 80px;
  }
  
  .navbar-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 30px 20px;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    z-index: 999;
  }

  .navbar-nav.active {
    display: flex;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-auth {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
  }

  .nav-auth .btn {
    width: 100%;
  }
  
  .navbar-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
  }

  .hero-map-container {
    height: 750px; /* Increased from 650px to maximize map space */
    position: relative;
    flex-direction: column;
    width: 100%;
    flex: none;
    overflow: hidden; /* Clip the bottom sheet when it's translated down */
  }

  .map-panel {
    position: relative;
    height: 100%;
    overflow: hidden;
  }

  /* Floating Search Bar */
  .map-filter-bar {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 1100;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
    padding: 8px 16px;
  }

  .map-filter-bar label {
    display: none;
  }

  .map-filter-bar input[type="text"] {
    border: none;
    width: 100%;
    padding: 4px 0;
    font-size: 1rem;
  }

  .map-filter-count {
    display: none;
  }

  /* Bottom Sheet Overlay */
  .map-list-sidebar {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 260px; /* Reduced from 320px */
    z-index: 2000; /* Increased to stay above hero-content and waves */
    border-radius: 24px 24px 0 0;
    border-left: none;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    transform: translateY(200px); /* Show 60px of the header (260 - 200) */
  }

  .map-list-sidebar.is-visible {
    transform: translateY(0);
  }

  .sidebar-mobile-header {
    display: block;
  }

  .playground-list-item {
    margin: 10px 15px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .playground-list-item.highlighted {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 12px rgba(152, 238, 153, 0.15);
  }

  .hero-content {
    padding: 30px 20px 40px; /* Much smaller padding */
    flex: none;
    cursor: pointer; /* Indicate it's clickable */
  }

  .hero-content h1 {
    font-size: 1.5rem; /* Smaller title */
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-actions {
    margin-top: 15px;
  }

  .hero-decor-waves {
    height: 80px;
  }

  .features {
    padding: 40px 0 60px;
  }

  .features h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 10px;
  }

  .feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 30px;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

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

  .footer-inner {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* Auth Pages */
.auth-page {
  background-color: #f8fbff;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.auth-card {
  background: #fff;
  width: 100%;
  max-width: 450px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.auth-header {
  position: relative;
  height: 120px;
  background: linear-gradient(135deg, #98EE99 0%, #00A8CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-header-icon {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.auth-body {
  padding: 50px 40px 40px;
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
  text-align: center;
}

.auth-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
  text-align: center;
}

.auth-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.input-with-icon {
  position: relative;
}

.input-with-icon .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-form .form-control {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1.5px solid #eee;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.2s;
  background: #fdfdfd;
  box-sizing: border-box;
}

.auth-form .form-control:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(152, 238, 153, 0.15);
  outline: none;
}

.auth-actions {
  margin-top: 2rem;
}

.auth-actions .btn {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 12px;
}

.auth-footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.auth-footer a {
  color: #0087a3;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-legal {
  background: #f9f9f9;
  padding: 15px;
  font-size: 0.8rem;
  color: #999;
  text-align: center;
}

@media (max-width: 480px) {
  .auth-page {
    padding: 0;
    background: #fff;
  }
  .auth-card {
    border-radius: 0;
    box-shadow: none;
    max-width: none;
    height: 100%;
  }
  .auth-body {
    padding: 50px 25px 40px;
  }
}

/* Sign-In Specific Styles */
.auth-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.auth-logo-box {
  width: 64px;
  height: 64px;
  background-color: #98EE99;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(152, 238, 153, 0.3);
}

.auth-title-large {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111;
  text-align: center;
  margin-bottom: 8px;
}

.auth-subtitle-light {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.auth-card-plain {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.02);
}

.social-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  color: #aaa;
  font-size: 0.85rem;
}

.social-auth-divider::before,
.social-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #eee;
}

.social-auth-divider:not(:empty)::before {
  margin-right: .75em;
}

.social-auth-divider:not(:empty)::after {
  margin-left: .75em;
}

.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
}

.social-btn:hover {
  background: #f9f9f9;
  border-color: #ddd;
}

.social-icon {
  width: 18px;
  height: 18px;
}

.auth-link-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: #666;
}

.auth-link-footer a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.auth-link-footer a:hover {
  text-decoration: underline;
}

.btn-login-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #006D44;
  color: #fff;
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-login-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 109, 68, 0.3);
  background-color: #005a38;
}
