/* NMR Car Transport & Towing - Dynamic Animations & Light Mode Design System */

:root {
  --bg-light: #f8fafc;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --primary-gold: #c59b27;
  --primary-gold-hover: #b3881c;
  --primary-gold-light: rgba(197, 155, 39, 0.12);
  --primary-glow: rgba(197, 155, 39, 0.3);
  
  --accent-black: #0f172a;
  --accent-orange: #ea580c;
  --accent-green: #16a34a;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  
  --border-light: rgba(197, 155, 39, 0.22);
  --border-subtle: #e2e8f0;
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.14);
  
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --font-en: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ar: 'Cairo', 'Tajawal', sans-serif;
  
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-en);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(197, 155, 39, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(15, 23, 42, 0.03) 0%, transparent 45%);
}

[dir="rtl"] {
  font-family: var(--font-ar);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

.gradient-text {
  background: linear-gradient(135deg, #9a781b 0%, var(--primary-gold) 50%, var(--accent-black) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineGradient 6s linear infinite;
}

@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

/* Light Cards with 3D Hover & Shimmer */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(197, 155, 39, 0.08) 50%, transparent 70%);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.glass-card:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.glass-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(197, 155, 39, 0.18);
}

/* Header & Prominent Logo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  height: 76px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  transition: var(--transition-bounce);
}

.brand-logo:hover img {
  transform: scale(1.08);
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  padding: 6px 0;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-link.lang-menu-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--primary-gold);
  font-weight: 700;
}

.nav-link.lang-menu-item:hover {
  color: var(--primary-gold-hover);
}

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

/* Animated Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #b3881c 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(197, 155, 39, 0.45);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.btn-secondary {
  background: var(--accent-black);
  color: #ffffff;
  border: 1px solid var(--accent-black);
}

.btn-secondary:hover {
  background: #1e293b;
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

/* Hero Section & Floating Animation */
.hero {
  padding: 170px 0 90px 0;
  position: relative;
}

.page-hero {
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero-title {
  font-size: 3rem;
  margin-bottom: 14px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-gold-light);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #9a781b;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.1);
  animation: badgePulse 3s infinite ease-in-out;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 10px #16a34a;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.hero-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

/* Dispatch Form */
.dispatch-section {
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.dispatch-card {
  padding: 36px;
  background: #ffffff;
}

.dispatch-header {
  text-align: center;
  margin-bottom: 30px;
}

.dispatch-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.dispatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-control {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px var(--primary-glow);
  transform: translateY(-1px);
}

/* Section Common */
.section {
  padding: 90px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

/* Services Cards & Detail Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
  transition: transform 0.5s ease;
}

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

.service-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
  background: var(--primary-gold);
  color: #ffffff;
  transform: rotate(8deg) scale(1.1);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.service-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: transform 0.6s ease;
}

.service-detail-img:hover {
  transform: scale(1.03);
}

.service-feature-list {
  list-style: none;
  margin: 20px 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.25s ease;
}

.service-feature-list li:hover {
  transform: translateX(6px);
}

[dir="rtl"] .service-feature-list li:hover {
  transform: translateX(-6px);
}

.service-feature-list i {
  color: var(--primary-gold);
}

/* About Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.spec-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.spec-box:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.spec-box h4 {
  font-size: 1.1rem;
  color: var(--primary-gold);
  margin-bottom: 6px;
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gold-light);
  border: 1px solid var(--border-light);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition-bounce);
}

.contact-card:hover .contact-icon {
  background: var(--primary-gold);
  color: #ffffff;
  transform: scale(1.15) rotate(10deg);
}

.contact-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-info p, .contact-info a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-info a:hover {
  color: var(--primary-gold);
}

/* Animated FAQ Accordion */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-fast);
}

[dir="rtl"] .faq-question {
  text-align: right;
}

.faq-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 12px 24px 20px 24px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 8px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-gold);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.benefit-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.benefit-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-gold);
}

/* Animated Coverage Pills */
.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.area-pill {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
}

.area-pill:hover {
  border-color: var(--primary-gold);
  background: var(--primary-gold-light);
  color: var(--primary-gold);
  transform: translateY(-4px) scale(1.05);
}

/* Instagram Box */
.insta-box {
  padding: 48px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.insta-handle {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 99;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-bounce);
  text-decoration: none;
}

.float-btn.whatsapp {
  background: #25d366;
}

.float-btn.call {
  background: var(--accent-black);
  color: var(--primary-gold);
}

.float-btn:hover {
  transform: scale(1.18) rotate(8deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Footer & Vertical Brand Logo Alignment */
.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 60px 0 30px 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
}

[dir="rtl"] .footer-brand .brand-logo {
  align-items: flex-start;
}

.footer-brand .brand-logo img {
  height: 72px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.footer-brand .brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 14px;
  max-width: 360px;
  font-size: 0.95rem;
}

.footer-col h5 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--primary-gold);
}

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

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

[dir="rtl"] .footer-links a:hover {
  transform: translateX(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .about-grid, .service-detail-row, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}
