/* ============================================================
   LONGEVITY ATHLETICS — COMPONENTS.CSS
   Header, Footer, Nav, Carousel, FAQ, Cards
   ============================================================ */

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.99);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* ── Primary Navigation ───────────────────────────────────── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(0, 175, 239, 0.08);
}

.nav-link.active {
  color: var(--accent);
}

/* Dropdown arrow */
.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-item.open .nav-link .chevron {
  transform: rotate(180deg);
}

/* ── Dropdown Menu ────────────────────────────────────────── */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-item.open .dropdown-menu,
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  background: rgba(0, 175, 239, 0.1);
  color: var(--accent);
}

/* ── Header CTA ───────────────────────────────────────────── */
.header-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  margin-left: 8px;
}

.header-cta .btn--primary {
  padding: 10px 28px;
  font-size: 0.85rem;
}

/* ── Hamburger Button ─────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Menu ──────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-1);
  z-index: 999;
  flex-direction: column;
  padding: 100px 30px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-sub {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-sub a {
  display: block;
  padding: 8px 0;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.2s ease;
}

.mobile-nav-sub a:hover {
  color: var(--accent);
}

.mobile-nav-cta {
  margin-top: 30px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-1);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 30px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-address {
  font-style: normal;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-phone a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 8px;
  color: var(--white);
  transition: background 0.2s ease;
}

.footer-social-icon:hover {
  background: var(--white);
  color: var(--dark-1);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
  padding: 2px 0;
}

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

.footer-address {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}

.footer-address a {
  color: var(--accent);
  transition: opacity 0.2s ease;
}

.footer-address a:hover {
  opacity: 0.8;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s ease;
}

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

/* ── REVIEW CAROUSEL ──────────────────────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 100%;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 33.333%;
  }
}

.review-card-inner {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.review-author {
  flex: 1;
}

.review-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-1);
  margin-bottom: 2px;
}

.review-stars {
  color: #FFD700;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #555;
  flex: 1;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.review-google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.review-source-text {
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.25s ease;
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  background: transparent;
  transition: color 0.2s ease;
  width: 100%;
  text-align: left;
  border: none;
  color: var(--white);
  gap: 12px;
}

.faq-question::before {
  display: none;
}

.faq-question:hover {
  background: transparent;
  color: var(--accent);
}

.faq-item.open .faq-question {
  background: transparent;
  color: var(--accent);
}

.faq-q-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: inherit;
  line-height: 1.4;
}

.faq-chevron {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent);
  transition: transform 0.3s ease;
  margin-left: auto;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── SERVICE CARDS ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-3);
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg {
  transform: scale(1.05);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.2) 100%
  );
  transition: background 0.3s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,175,239,0.2) 50%,
    rgba(0,0,0,0.3) 100%
  );
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 175, 239, 0.25);
  line-height: 1;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-number {
  color: rgba(0, 175, 239, 0.5);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.service-card:hover .service-card-desc {
  max-height: 200px;
  opacity: 1;
}

/* ── STEPS SECTION ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-item {
  border: 2px solid #1a1a1a;
  padding: 28px 24px 32px;
  text-align: left;
  background: var(--white);
}

.step-card-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-1);
  margin-bottom: 6px;
}

.step-number-large {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--dark-1);
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* .btn--steps-cta inherits base .btn styles */

/* ── PARTNER LOGOS ────────────────────────────────────────── */
.partner-bar {
  background: var(--dark-4);
  padding: 24px 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.partner-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.partner-logo {
  height: 36px;
  width: auto;
  opacity: 0.5;
  filter: brightness(0.8);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.partner-logo:hover {
  opacity: 0.85;
  filter: brightness(1);
}

/* ── CHECKLIST ITEMS ──────────────────────────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #555;
}

.checklist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist-icon svg {
  width: 12px;
  height: 12px;
  color: white;
}

/* ── MAP EMBED ────────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: 120px 30px 80px;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
              url('https://longevityathletics.com/wp-content/uploads/elementor/thumbs/hero-bg.jpg') center/cover no-repeat;
  background-color: var(--dark-1);
  text-align: center;
  color: var(--white);
}

.page-hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.page-hero h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* ── TESTIMONIAL CARDS (member reviews page) ──────────────── */
.testimonial-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  padding: 36px;
  margin-bottom: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-1);
}

.testimonial-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
  font-family: var(--font-heading);
}

.testimonial-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

/* ── FORM STYLES (get-started) ────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 600px;
  margin: 0 auto;
}

.form-logo {
  text-align: center;
  margin-bottom: 28px;
}

.form-logo img {
  height: 56px;
  width: auto;
  margin: 0 auto;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark-1);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.25;
}

.form-subtitle {
  text-align: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.form-section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mid-gray);
  margin: 20px 0 12px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-1);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  color: var(--dark-1);
  background: var(--white);
  transition: border-color 0.2s ease;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
}

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

.form-consent {
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-consent label {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

.form-consent label a {
  color: var(--accent);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  font-size: 1rem;
}

/* ── GHL PLACEHOLDER ──────────────────────────────────────── */
#ghl-form-placeholder {
  border: 2px dashed rgba(0, 175, 239, 0.3);
  border-radius: var(--radius-card);
  padding: 20px;
  background: rgba(0, 175, 239, 0.03);
}

/* ── RESPONSIVE COMPONENTS ────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 20px;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 100%;
  }

  .carousel-controls {
    gap: 12px;
  }
}
