/* Design System for MTWL Legal Website */

:root {
  /* Premium Dark Navy Palette */
  --bg-deep-navy: #030816;
  --bg-darker: #01040d;
  --bg-card: rgba(13, 20, 41, 0.5);
  --color-text-primary: #ffffff;
  --color-text-secondary: #a0aec0;
  
  /* Brand Gold Highlights */
  --color-gold: #c5a85c;
  --color-gold-hover: #e2c57a;
  --color-gold-muted: rgba(197, 168, 92, 0.15);
  --color-gold-glow: rgba(197, 168, 92, 0.4);
  
  /* Glassmorphic settings */
  --glass-bg: rgba(3, 8, 22, 0.75);
  --glass-border: rgba(197, 168, 92, 0.12);
  --glass-border-focus: rgba(197, 168, 92, 0.4);
  --glass-shadow: rgba(0, 0, 0, 0.5);
  
  /* Typography */
  --font-headings: 'Outfit', 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Animation Timings */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  --max-width: 1280px;
}

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

html, body {
  background-color: var(--bg-deep-navy);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-muted);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Core layouts */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--bg-darker);
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 20px rgba(197, 168, 92, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(197, 168, 92, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--glass-border-focus);
}

.btn-outline:hover {
  background-color: var(--color-gold-muted);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

/* Header & Glassmorphic Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: rgba(1, 4, 13, 0.95);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-text-primary);
}

.logo-text span {
  color: var(--color-gold);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--color-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

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

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

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  cursor: pointer;
}

/* Router Page Transition Container */
main {
  padding-top: 80px;
  position: relative;
  min-height: 100vh;
}

.page-section {
  display: none;
  animation: pageFadeIn 0.5s ease forwards;
}

.page-section.active {
  display: block;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-section {
  padding: 8rem 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.hero-badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  border: 1px solid var(--color-gold-muted);
  background: var(--color-gold-muted);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--color-text-primary);
}

.hero-title span {
  color: var(--color-gold);
}

.hero-desc {
  color: var(--color-text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/3;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.08);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--bg-deep-navy) 0%, transparent 40%);
}

/* Section Styling Helpers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.section-title span {
  color: var(--color-gold);
}

.section-desc {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

/* Practice Areas Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.practice-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.practice-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-focus);
  box-shadow: 0 15px 40px rgba(197, 168, 92, 0.1);
  background: rgba(13, 20, 41, 0.85);
}

.practice-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 700;
}

.practice-card h3 {
  font-size: 1.4rem;
  color: var(--color-text-primary);
}

.practice-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.practice-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-top: auto;
  padding-top: 1rem;
}

.practice-card:hover .practice-card-link {
  color: var(--color-gold-hover);
}

/* Why Choose Us Section */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.value-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold-muted);
  background: var(--color-gold-muted);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.05rem;
}

.value-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.value-info p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Testimonials Slider Component */
.testimonial-container {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  flex: 0 0 calc(50% - 1rem);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: 700;
  border: 1px solid var(--color-gold);
}

.testimonial-meta h4 {
  font-size: 1rem;
}

.testimonial-meta p {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--glass-border-focus);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 25px;
  border-radius: 100px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(13, 20, 41, 0.9) 0%, rgba(3, 8, 22, 0.9) 100%);
  border: 1px solid var(--color-gold);
  border-radius: 24px;
  padding: 5rem 4rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  max-width: 800px;
}

.cta-banner p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 1rem;
}

/* FAQ Accordion Component */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.faq-item.open {
  border-color: var(--glass-border-focus);
  background: rgba(13, 20, 41, 0.75);
}

.faq-item.open .faq-icon {
  transform: rotate(135deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 2rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 200px; /* arbitrary height to slide down */
  padding-bottom: 1.5rem;
}

/* Contact Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.contact-icon-wrapper {
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-detail p {
  font-size: 1.05rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(3, 8, 22, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(197, 168, 92, 0.15);
  background: rgba(3, 8, 22, 0.95);
}

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

.form-success-banner {
  background: rgba(30, 70, 45, 0.3);
  border: 1px solid #1e702d;
  color: #72db85;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* About Section Story Layout */
.about-story-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-story-text p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Team Grid styling */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-focus);
}

.team-avatar-box {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-muted);
  border-bottom: 1px solid var(--glass-border);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h4 {
  font-size: 1.2rem;
  color: var(--color-text-primary);
}

.team-info p {
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* News Article Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-focus);
  box-shadow: 0 15px 40px rgba(197, 168, 92, 0.1);
}

.news-img-box {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg-darker);
}

.news-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.news-card:hover .news-img-box img {
  transform: scale(1.05);
}

.news-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  gap: 15px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-gold);
}

.news-title {
  font-size: 1.3rem;
  line-height: 1.3;
}

.news-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.news-read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  border: none;
  background: transparent;
  cursor: pointer;
  margin-top: auto;
  padding-top: 1rem;
}

.news-card:hover .news-read-more {
  color: var(--color-gold-hover);
}

/* News Detailed View Page styling */
.news-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-detail-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-detail-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.news-detail-meta {
  display: flex;
  gap: 20px;
  color: var(--color-gold);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.news-detail-img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.news-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-body {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.news-detail-body p {
  margin-bottom: 0.5rem;
}

/* Footer Section */
footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 3rem;
  color: var(--color-text-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-col h4 {
  color: var(--color-text-primary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background-color: var(--color-gold);
  color: var(--bg-darker);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Responsiveness Settings */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 6rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(1, 4, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    padding: 3rem 2rem;
    z-index: 999;
  }
  
  nav.open {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
