/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #fec600;
  --yellow-dark: #e0b000;
  --black: #000;
  --white: #fff;
  --gray: #666;
  --gray-light: #f5f5f5;
  --font: 'Montserrat', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.header-inner {
  display: flex;
  align-items: stretch;
  max-width: 100%;
  height: 70px;
}

.logo-link {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  flex-shrink: 0;
}

.logo-img { height: 45px; width: auto; }

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.main-nav ul {
  display: flex;
  gap: 35px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
  transition: color .2s;
}

.main-nav a:hover,
.main-nav a.active { color: var(--yellow-dark); }

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
}

/* ===== Hero Banner ===== */
.index-banner {
  position: relative;
  height: 100vh;
  min-height: 500px;
  margin-top: 70px;
  overflow: hidden;
}

.banner-media {
  position: absolute;
  inset: 0;
  right: 18%;
}

.banner-media video,
.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-yellow-bar {
  position: absolute;
  top: 0; right: 0;
  width: 18%;
  height: 100%;
  background: var(--yellow);
}

.index-banner-text {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: right;
}

.index-banner-text h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.index-banner-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,.5);
}

.text-yellow { color: var(--black); }

/* ===== Section Title ===== */
.index-common-title {
  text-align: center;
  padding: 60px 20px 30px;
  position: relative;
}

.title-logo {
  height: 50px;
  margin: 0 auto 15px;
}

.title-logo-yellow { display: none; }

.index-common-title h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ===== Product Tabs ===== */
.product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 3px solid var(--yellow);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-tab {
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--black);
  transition: all .25s;
  position: relative;
}

.product-tab:hover { color: var(--yellow-dark); }

.product-tab.active {
  background: var(--yellow);
  color: var(--black);
}

/* ===== Product Swiper / Catalog ===== */
.index-product {
  background: var(--gray-light);
  padding-bottom: 40px;
}

.product-swiper-wrap {
  position: relative;
  max-width: 1400px;
  margin: 30px auto 0;
  padding: 0 60px;
}

.product-swiper {
  overflow: hidden;
}

.product-track {
  display: flex;
  transition: transform .5s ease;
}

.product-slide {
  min-width: 100%;
  padding: 10px 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.product-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: box-shadow .3s, transform .3s;
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  transform: translateY(-3px);
  z-index: 2;
  position: relative;
}

.pro-cont1 { flex: 1; display: flex; flex-direction: column; }

.item-text { margin-bottom: 12px; }

.item-title1 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.item-title2 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.item-desc {
  font-size: 12px;
  line-height: 1.5;
  color: #444;
}

.item-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
}

.item-img img {
  max-height: 150px;
  width: auto;
  transition: opacity .3s;
}

.angle-switcher {
  margin-top: 10px;
}

.angle-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.angle-btns {
  display: flex;
  gap: 6px;
}

.angle-btn {
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid #ddd;
  background: var(--white);
  transition: all .2s;
}

.angle-btn.active,
.angle-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.card-detail {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: color .2s;
}

.card-detail:hover { color: var(--yellow-dark); }

.card-detail img {
  width: 16px;
  height: 16px;
}

.swiper-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
  transition: background .2s;
}

.swiper-arrow:hover { background: var(--yellow-dark); }

.swiper-arrow-left { left: 10px; }
.swiper-arrow-right { right: 10px; }

.left-yh { transform: rotate(180deg); width: 12px; }
.right-yh { width: 12px; }

.more-products-wrap {
  text-align: center;
  margin-top: 30px;
}

.more-products-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--black);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background .2s;
}

.more-products-btn:hover {
  background: #222;
}

/* ===== Search Section ===== */
.index-search {
  position: relative;
  background: url('https://blackliontires.de/public/files/image/index_search_bg.jpg') center/cover no-repeat;
  padding: 80px 20px;
}

.index-search::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
}

.search-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
}

.search-title h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.search-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 30px;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.search-group legend {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.radio-group label:has(input:checked) {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.radio-group input { accent-color: var(--yellow); }

.search-btn {
  align-self: flex-start;
  padding: 14px 50px;
  background: var(--yellow);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background .2s;
}

.search-btn:hover { background: var(--yellow-dark); }

.search-results {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.search-result-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 15px;
  cursor: pointer;
  transition: background .2s;
}

.search-result-img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  background: rgba(255,255,255,.08);
  padding: 8px;
}

.search-result-card:hover { background: rgba(255,255,255,.2); }

.search-result-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 6px;
}

.search-result-card p { font-size: 12px; line-height: 1.4; }

.search-empty {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

/* ===== About Section ===== */
.index-about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 500px;
}

.about-stats {
  background: url('https://blackliontires.de/public/files/image/index_about_bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px;
}

.about-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.stat-item {
  position: relative;
  z-index: 1;
  color: var(--white);
  margin-bottom: 40px;
}

.stat-item h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-item p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.about-more {
  display: inline-block;
  padding: 12px 30px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: flex-start;
  transition: background .2s;
}

.about-more:hover { background: var(--yellow-dark); }

/* ===== Knowledge ===== */
.index-knowledge {
  background: var(--black);
  color: var(--white);
  padding: 50px 20px;
}

.knowledge-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.knowledge-inner h2 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: var(--yellow);
}

.knowledge-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.knowledge-list a {
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}

.knowledge-list a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 50px 20px 20px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { height: 50px; }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-contact img { width: 18px; height: 18px; }

.footer-contact a { color: var(--yellow); }

.footer-columns {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer-col h3,
.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--yellow);
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col a {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--yellow); }

.footer-legal { display: flex; gap: 20px; }

/* ===== Modal ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay[hidden] { display: none; }

.modal-content {
  background: var(--white);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  color: var(--gray);
  z-index: 1;
  line-height: 1;
}

.modal-close:hover { color: var(--black); }

.modal-body { padding: 40px; }

.modal-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.modal-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-light);
  padding: 30px;
  min-height: 250px;
}

.modal-img-wrap img { max-height: 220px; }

.modal-info h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.modal-info h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.modal-info .modal-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-features {
  margin-bottom: 20px;
}

.modal-features li {
  font-size: 13px;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
}

.modal-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow-dark);
  font-weight: 700;
}

.modal-angles { margin-top: 15px; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .product-list { grid-template-columns: repeat(3, 1fr); }
  .footer-columns { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .product-list { grid-template-columns: repeat(2, 1fr); }
  .index-about { grid-template-columns: 1fr; }
  .modal-product { grid-template-columns: 1fr; }
  .banner-yellow-bar { width: 10%; }
  .banner-media { right: 10%; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s, opacity .3s, visibility 0s .3s;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s, opacity .3s;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .product-list { grid-template-columns: 1fr; }
  .product-swiper-wrap { padding: 0 45px; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .index-banner-text { right: 12%; }
}

@media (max-width: 480px) {
  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Contact Page ===== */
.contact-body { padding-top: 70px; }

.contact-banner {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-banner-bg {
  position: absolute;
  inset: 0;
  background: url('https://blackliontires.de/public/files/image/index_search_bg.jpg') center/cover no-repeat;
}

.contact-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}

.contact-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 50px 20px;
}

.contact-banner-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.contact-banner-content p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
}

.contact-breadcrumb {
  background: var(--gray-light);
  border-bottom: 3px solid var(--yellow);
}

.contact-breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-breadcrumb-inner a {
  color: var(--gray);
  transition: color .2s;
}

.contact-breadcrumb-inner a:hover { color: var(--black); }

.contact-breadcrumb-inner span { margin: 0 8px; color: #aaa; }

.contact-breadcrumb-inner .current { color: var(--yellow-dark); }

.contact-main {
  padding: 60px 20px 80px;
  background: var(--white);
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

.contact-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--yellow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--gray-light);
  padding: 28px;
  margin-bottom: 20px;
  border-left: 4px solid var(--yellow);
  transition: transform .2s, box-shadow .2s;
}

.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: 4px 4px 16px rgba(0,0,0,.08);
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
}

.contact-info-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-info-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

.contact-postal {
  font-weight: 700;
  margin-top: 4px;
}

.contact-email {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  transition: color .2s;
}

.contact-email:hover { color: var(--yellow-dark); }

.contact-slogan {
  margin-top: 12px;
  padding: 28px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.contact-slogan p {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.contact-slogan-accent {
  font-size: 22px !important;
  font-weight: 900 !important;
  color: var(--yellow) !important;
  margin-top: 4px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid #e8e8e8;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.contact-form-header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-light);
}

.contact-form-header h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form-header p {
  font-size: 12px;
  color: var(--gray);
  margin-top: 6px;
}

.contact-field {
  margin-bottom: 20px;
}

.contact-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.req { color: var(--yellow-dark); }

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(254,198,0,.15);
}

.contact-field input.has-error,
.contact-field textarea.has-error {
  border-color: #c8102e;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-error {
  display: block;
  font-size: 12px;
  color: #c8102e;
  margin-top: 4px;
  min-height: 16px;
}

.contact-submit {
  width: 100%;
  padding: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background .2s;
  margin-top: 8px;
}

.contact-submit:hover { background: var(--yellow-dark); }

.contact-submit:disabled {
  background: #ddd;
  cursor: not-allowed;
}

.contact-success {
  padding: 20px;
  background: #f0faf0;
  border: 1px solid #a5d6a7;
  margin-top: 20px;
}

.contact-success p {
  font-size: 14px;
  color: #2e7d32;
  font-weight: 700;
}

.contact-map {
  border-top: 4px solid var(--yellow);
}

.contact-map iframe {
  display: block;
  filter: grayscale(20%);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}







