/* CSS Variables - Yellowish Orange Theme */
:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-light: #fbbf24;
  --primary-lighter: #fef3c7;
  --background: #fffbf5;
  --foreground: #1c1917;
  --card: #ffffff;
  --card-foreground: #1c1917;
  --muted: #f5f0e8;
  --muted-foreground: #78716c;
  --border: #e7e5e4;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

.text-primary {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--foreground);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-white {
  background-color: var(--white);
  color: var(--foreground);
}

.btn-white:hover {
  background-color: var(--muted);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-services-cta {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: linear-gradient(135deg, #fffaf0 0%, var(--primary-lighter) 100%);
  box-shadow: 0 10px 24px -14px rgba(217, 119, 6, 0.9);
}

.btn-services-cta:hover {
  border-color: var(--primary-dark);
  color: var(--foreground);
  background: linear-gradient(135deg, var(--primary-lighter) 0%, #fde68a 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(217, 119, 6, 0.95);
}

.btn-full {
  width: 100%;
}

/* Top Bar */
.top-bar {
  background: radial-gradient(circle at 0% 0%, #fffbeb 0, #fed7aa 30%, #f97316 60%, #ea580c 100%);
  color: #111827;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  box-shadow: 0 12px 30px -20px rgba(194, 65, 12, 0.9);
  position: relative;
  overflow: hidden;
}

.top-bar-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .top-bar-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.top-bar-left,
.top-bar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.top-bar-item svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 9999px;
  background: rgba(254, 243, 199, 0.95);
  color: #92400e;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.6);
}

.top-bar-highlight {
  font-weight: 500;
  color: #fefce8;
  text-shadow: 0 0 12px rgba(254, 249, 195, 0.85);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #fefce8 0%, #fffbeb 20%, #ffedd5 60%, #fed7aa 100%);
  border-bottom: 1px solid rgba(248, 250, 252, 0.8);
  box-shadow: 0 14px 30px -24px rgba(148, 163, 184, 0.9);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(254, 243, 199, 0.9);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.01em;
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  position: relative;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.nav-link:hover {
  color: #92400e;
  background-color: rgba(254, 243, 199, 0.9);
  box-shadow: 0 4px 12px -8px rgba(248, 191, 72, 0.9);
  transform: translateY(-1px);
}

.header-btn {
  display: none;
}

@media (min-width: 1024px) {
  .header-btn {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1rem 1rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: var(--mobile-nav-top, 72px);
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: var(--shadow);
}

.mobile-nav.active {
  display: flex;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

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

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--background) 0%, var(--primary-lighter) 100%);
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: var(--primary-lighter);
  color: var(--primary-dark);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid var(--primary);
  border-radius: var(--radius-xl);
  transform: translate(12px, 12px);
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: var(--primary-lighter);
  color: var(--primary-dark);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--white);
}

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

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-lighter);
  color: var(--primary-dark);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.service-icon svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon.emergency {
  background-color: #fee2e2;
  color: #dc2626;
}

.service-title {
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  min-height: 2.8rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: auto;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--background);
}

.about-gallery {
  flex: 1;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
}

.about-gallery .gallery-item:first-child {
  grid-column: 1 / -1;
}

.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(231, 229, 228, 0.9);
  background: var(--card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item:focus-within img {
  transform: scale(1.03);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
}

@media (min-width: 640px) {
  .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-gallery .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (min-width: 1024px) {
  .about-gallery {
    gap: 1.25rem;
  }
}

.about-text {
  flex: 1;
}

.facilities {
  padding: 5rem 0;
  background-color: var(--white);
}

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

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.about-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background-color: var(--primary);
  color: var(--foreground);
  border-radius: 9999px;
  flex-shrink: 0;
}

/* Doctors Section */
.doctors {
  padding: 5rem 0;
  background-color: var(--white);
}

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

@media (min-width: 640px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .doctors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.doctor-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.doctor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.doctor-image {
  aspect-ratio: 3/3.5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

.avatar-placeholder {
  width: 70%;
  max-width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  background: radial-gradient(circle at 30% 25%, #fefcf5 0, #fefcf5 30%, #e2e8f0 31%, #e2e8f0 55%, #cbd5f0 56%, #cbd5f0 100%);
  position: relative;
  box-shadow: var(--shadow);
}

.avatar-placeholder::before {
  content: '';
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  background: #e5e7eb;
}

.avatar-placeholder::after {
  content: '';
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 58%;
  height: 32%;
  border-radius: 9999px;
  background: #d1d5db;
}

.doctor-card:hover .doctor-image .avatar-placeholder {
  transform: scale(1.05);
}

.doctor-info {
  padding: 1.25rem;
  text-align: center;
}

.doctor-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.doctor-specialty {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.doctor-experience {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--background);
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-lighter);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.author-role {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--primary);
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: var(--foreground);
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 2rem;
}

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

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-form {
  background-color: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .contact-info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--muted);
  border-radius: var(--radius-lg);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--foreground);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-card-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-card-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-map {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

@media (min-width: 1024px) {
  .contact-map {
    min-height: 100%;
  }

  .contact-map iframe {
    min-height: 100%;
  }
}

/* Footer */
.footer {
  padding: 4rem 0 0;
  background-color: var(--foreground);
  color: var(--white);
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
  }
}

.footer-brand .logo-icon {
  background-color: var(--primary);
  color: var(--foreground);
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: var(--white);
  transition: background-color 0.2s ease;
}

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

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

@media (min-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a,
.footer-column ul li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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