/* ==========================================================================
   Student Housing in Tilburg (SHT) - Modern CSS Stylesheet
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary-color: #00569e;
  --primary-dark: #003b6e;
  --primary-light: #0074d9;
  --accent-blue: #e8f4fc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  --bg-dark: #0f172a;
  --border-color: #cbd5e1;
  --font-heading: 'Oswald', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Resets & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul {
  list-style: none;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.4rem 0.2rem;
  position: relative;
}

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

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

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Language selector dropdown */
.lang-selector {
  display: flex;
  align-items: center;
  position: relative;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--bg-light) url("data:image/svg+xml;utf8,<svg fill='%2300569e' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 0.6rem center;
  border: 1px solid var(--border-color);
  padding: 0.35rem 1.8rem 0.35rem 0.75rem;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.lang-select:hover, .lang-select:focus {
  border-color: var(--primary-color);
  background-color: var(--accent-blue);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Parallax Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 35, 75, 0.35), rgba(0, 55, 115, 0.45)), url('../images/Banner.jpg') center/cover fixed no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 6.5rem 1.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-aboutsam {
  position: relative;
  background: linear-gradient(rgba(0, 75, 145, 0.72), rgba(0, 75, 145, 0.72)), url('../images/20230809_SAM_BoardPictures-003 copy.png') center/cover fixed no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 6.5rem 1.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-aboutsam-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-aboutsam-logo {
  height: 125px;
  width: auto;
  object-fit: contain;
  margin-top: 0.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.hero-aboutsht {
  position: relative;
  background: linear-gradient(rgba(0, 75, 145, 0.72), rgba(0, 75, 145, 0.72)), url('../images/SHTBlueEffect.png') center/cover fixed no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 6.5rem 1.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-aboutsht-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-aboutsht-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-top: 0.5rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

/* --- Clean non-parallax page banner --- */
.page-banner-clean {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-banner-clean .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: none;
}

.page-banner-clean .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e0f2fe;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: none;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  max-width: 700px;
  opacity: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.partner-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.partner-badge span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #ffffff;
}

.partner-logo {
  height: 36px;
  filter: brightness(0) invert(1);
}

/* --- Button Component --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline-white:hover {
  background: var(--text-light);
  color: var(--primary-dark);
}

/* --- Sections --- */
.section {
  padding: 4.5rem 1.5rem;
}

.section-alt {
  background-color: var(--bg-light);
}

.section-blue {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Parallax Sections */
.parallax-what-we-do {
  position: relative;
  background: linear-gradient(rgba(0, 86, 158, 0.45), rgba(0, 86, 158, 0.45)), url('../images/Student1.png') center/cover fixed no-repeat;
  color: var(--text-light);
  padding: 5.5rem 1.5rem;
}

.parallax-attend-viewing {
  position: relative;
  background: linear-gradient(rgba(0, 86, 158, 0.45), rgba(0, 86, 158, 0.45)), url('../images/SHTBlueEffect2.png') center/cover fixed no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 5.5rem 1.5rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.section-blue .section-title,
.parallax-what-we-do .section-title,
.parallax-attend-viewing .section-title {
  color: var(--text-light);
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.section-desc {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-blue .section-desc,
.parallax-what-we-do .section-desc,
.parallax-attend-viewing .section-desc {
  color: #f0f9ff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* --- Featured Logos Grid --- */
.featured-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.featured-logo-card {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  transition: var(--transition);
}

.featured-logo-card:hover {
  transform: scale(1.05);
}

.featured-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

/* --- Feature Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: transparent;
  border: none;
  backdrop-filter: none;
  padding: 1rem 1.25rem;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.card-icon-svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-svg svg {
  width: 52px;
  height: 52px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* --- Split Action Portals --- */
.section-portals-wix {
  background-color: var(--primary-color);
  padding: 4.5rem 0 0;
  color: var(--text-light);
}

.split-portals-wix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  margin-top: 2.5rem;
}

.portal-card-wix {
  position: relative;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.portal-card-wix img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portal-card-wix:hover img {
  transform: scale(1.04);
}

.portal-bottom-banner {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.portal-bottom-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.portal-bottom-banner .btn {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.portal-bottom-banner .btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* --- About SAM 50/50 Wix Layout --- */
.aboutsam-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background-color: var(--primary-color);
}

.aboutsam-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}

.aboutsam-split-content {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.aboutsam-quote-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aboutsam-quote-text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #ffffff;
  opacity: 0.95;
}

.aboutsam-author {
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}

/* --- Contact Us Section (Wix Blue Style) --- */
.section-contact-wix {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 5rem 0 0;
}

.contact-layout-wix {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: 4rem;
}

.contact-left-wix {
  color: #ffffff;
}

.contact-left-wix h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.contact-detail-item a {
  color: #ffffff;
  font-weight: 500;
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

/* Minimalist Form (Wix Style) */
.wix-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.wix-form-full {
  grid-column: 1 / -1;
}

.wix-input-group {
  position: relative;
}

.wix-input-group input,
.wix-input-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.75rem 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.wix-input-group input::placeholder,
.wix-input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.wix-input-group input:focus,
.wix-input-group textarea:focus {
  border-bottom-color: #ffffff;
}

/* Prevent Chrome / Edge / Safari Browser Autofill from turning background white */
.wix-input-group input:-webkit-autofill,
.wix-input-group input:-webkit-autofill:hover,
.wix-input-group input:-webkit-autofill:focus,
.wix-input-group textarea:-webkit-autofill,
.wix-input-group textarea:-webkit-autofill:hover,
.wix-input-group textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #00569e inset !important;
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent !important;
}

.wix-submit-btn {
  grid-column: 1 / -1;
  background: #ffffff;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.wix-submit-btn:hover {
  background: #e0f2fe;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Full Width Dark Google Map */
.dark-map-full {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 1rem;
}

.dark-map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%) contrast(90%);
}

/* --- FAQ Accordion --- */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-group {
  margin-bottom: 2.5rem;
}

.faq-group-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-blue);
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question:hover {
  color: var(--primary-color);
  background: var(--bg-light);
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  background: var(--bg-white);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
  transition: max-height 0.35s ease-in, padding 0.3s ease;
}

/* --- Form Embedding & Container --- */
.iframe-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 1rem;
}

.iframe-container iframe {
  width: 100%;
  min-height: 850px;
  border: none;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
  .aboutsam-split {
    grid-template-columns: 1fr;
  }
  .aboutsam-split-img {
    height: 400px;
  }
  .aboutsam-split-content {
    padding: 3rem 1.5rem;
  }
  .contact-layout-wix {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero,
  .parallax-what-we-do,
  .parallax-attend-viewing {
    background-attachment: scroll;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .hero {
    padding: 4rem 1rem 3.5rem;
    min-height: 380px;
  }
  .featured-logo-card {
    width: 140px;
    height: 140px;
  }
  .split-portals-wix {
    grid-template-columns: 1fr;
  }
  .portal-card-wix {
    height: 360px;
  }
  .wix-contact-form {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }
}
