/*
  ONTARIOSLOTO.COM - Global Stylesheet
  Design System: Le Canelé Custom Adaptation
*/

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  /* Colors */
  --primary-dark-green: #0E3B33;
  --primary-dark-green-hover: #0A2F28;
  --accent-pink: #ED6A78;
  --accent-pink-hover: #E05765;
  --white: #FFFFFF;
  --bg-off-white: #F8F9FA;
  --bg-card-light: #FCFCFD;
  --text-dark: #111111;
  --text-body: #555555;
  --text-light: #999999;
  --border-light: #E5E7EB;
  --border-hover: #CCD0D5;
  --star-rating: #FFC107;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-circle: 50%;
  --radius-full: 999px;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;

  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-large: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 12px 28px rgba(14, 59, 51, 0.12);

  /* Typography */
  --font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* Layout Constraints */
  --max-width: 1200px;
  --section-padding-y: 80px;
  --grid-gap: 24px;
}
.section-dark .body-large {
    font-size: 18px;
    line-height: 1.6;
   color: var(--white);
}
/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-off-white);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- TYPOGRAPHY STYLES --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-dark);
}

h5 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text-dark);
}

.body-large {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
}

.body-small {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-light);
}

.caption {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-dark {
  background-color: var(--primary-dark-green);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: var(--white);
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

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

.text-gradient-pink {
  color: var(--accent-pink);
}

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* --- HEADER & NAVIGATION --- */
.header {
  background-color: var(--white);
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-light);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-dark-green);
}

.logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  padding: var(--space-xs) 0;
  position: relative;
}

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

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

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

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

/* Mobile Hamburger Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--text-dark);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-medium);
  z-index: 999;
  padding: var(--space-lg);
  list-style: none;
  flex-direction: column;
  gap: var(--space-md);
}

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

.mobile-nav .nav-link {
  font-size: 18px;
  width: 100%;
  display: block;
}

/* --- BUTTON COMPONENTS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

.btn-primary:active {
  transform: translateY(0px);
}

.btn-primary.disabled {
  background-color: var(--text-light);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

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

.btn-accent:hover {
  background-color: var(--accent-pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 106, 120, 0.3);
}

.btn-accent:active {
  transform: translateY(0px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  font-weight: 500;
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  font-weight: 500;
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-dark-green);
  transform: translateY(-2px);
}

/* --- CARD COMPONENTS --- */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Stat Card */
.stat-card {
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
}

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

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark-green);
  margin-bottom: var(--space-xs);
}

/* Category Card */
.category-card {
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-dark-green);
  margin-bottom: var(--space-lg);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-dark-green);
}

.category-card .card-cta {
  font-weight: 600;
  color: var(--text-dark);
  margin-top: auto;
  padding-top: var(--space-md);
  display: inline-block;
  transition: color 0.2s ease;
}

.category-card:hover .card-cta {
  color: var(--primary-dark-green);
}

/* Featured State for Category Card */
.category-card.featured {
  background-color: var(--primary-dark-green);
  color: var(--white);
}

.category-card.featured h4,
.category-card.featured .category-icon {
  color: var(--white);
}

.category-card.featured p {
  color: rgba(255, 255, 255, 0.85);
}

.category-card.featured .card-cta {
  color: var(--accent-pink);
}

.category-card.featured:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.category-card.featured:hover .card-cta {
  color: var(--white);
}

/* Article / Game Review Card */
.review-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.review-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-6px);
  border-color: var(--primary-dark-green);
}

.card-image-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-dark-green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.card-tag-group {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.card-tag {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex-grow: 1;
}

.card-content h4 {
  transition: color 0.2s ease;
}

.review-card:hover .card-content h4 {
  color: var(--primary-dark-green);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.rating-row svg {
  width: 16px;
  height: 16px;
}

.rating-star {
  fill: var(--star-rating);
  color: var(--star-rating);
}

.rating-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-sm);
}

.meta-text {
  font-size: 13px;
  color: var(--text-light);
}

.meta-link {
  color: var(--primary-dark-green);
  font-weight: 600;
  font-size: 14px;
}

/* Process Step Card */
.step-card {
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-dark-green);
}

.step-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-dark-green);
  background-color: var(--bg-off-white);
  padding: 10px;
  border-radius: var(--radius-circle);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.step-card:hover .step-number {
  color: var(--accent-pink);
}

/* Team Card */
.team-card {
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.team-avatar {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.03);
}

.team-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.team-socials {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-sm);
}

.team-socials a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.team-socials a:hover {
  color: var(--accent-pink);
}

/* Testimonial Card */
.testimonial-card {
  background-color: var(--bg-card-light);
  padding: var(--space-lg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.testimonial-quote {
  color: var(--text-light);
  font-size: 24px;
  opacity: 0.3;
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  color: var(--text-body);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

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

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-light);
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-accordion:hover {
  background-color: var(--bg-off-white);
}

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

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  font-size: 15px;
  color: var(--text-body);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

/* Expanded FAQ State */
.faq-accordion.expanded {
  background-color: var(--primary-dark-green);
}

.faq-accordion.expanded:hover {
  background-color: var(--primary-dark-green);
}

.faq-accordion.expanded .faq-question {
  color: var(--white);
}

.faq-accordion.expanded .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-accordion.expanded .faq-answer {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- HERO SECTION STYLING --- */
.hero-wrap {
  background-color: var(--bg-off-white);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.hero-text-col {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.hero-img-col {
  width: 50%;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-badge-row {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
}

.badge-pink {
  background-color: var(--accent-pink);
  color: var(--white);
}

.badge-outline {
  background-color: var(--white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

/* --- CONTACT FORM --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-dark-green);
}

textarea.form-control {
  resize: none;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(14, 59, 51, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark-green);
  flex-shrink: 0;
}

.contact-info-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.contact-info-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.contact-map-placeholder {
  height: 256px;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-sm);
  color: var(--text-light);
  margin-top: var(--space-xl);
}

.contact-map-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--primary-dark-green);
}

/* --- FOOTER SECTION --- */
.footer {
  background-color: var(--primary-dark-green);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-4xl) 0 var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  color: var(--accent-pink);
  transform: scale(1.1);
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-links-col h5 {
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-identity {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 800px;
  line-height: 1.5;
}

/* --- OVERLAY / MODAL DIALOG --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(4px);
  padding: var(--space-md);
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-large);
  border: 1px solid var(--border-light);
  max-width: 768px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
  border: none;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  z-index: 10;
  transition: background-color 0.2s ease;
}

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

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
}

.modal-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: var(--space-xl);
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.modal-genre {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark-green);
  background-color: rgba(14, 59, 51, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.modal-platform {
  font-size: 13px;
  color: var(--text-light);
}

.modal-title {
  margin-bottom: var(--space-md);
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.modal-rating svg {
  width: 20px;
  height: 20px;
}

.modal-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}

.modal-description p {
  margin-bottom: var(--space-md);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  .hero-container {
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-menu,
  .nav-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }

  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }

  /* Layout */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text-col,
  .hero-img-col {
    width: 100%;
  }

  .hero-text-col {
    align-items: center;
  }

  .hero-badge-row {
    margin-top: var(--space-lg);
    justify-content: center;
  }

  /* Contact and Footer layout */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .footer-bottom {
    margin-top: var(--space-xl);
  }
}

/* Contact Specific Layout */
.contact-card {
  padding: var(--space-xl);
  border: 1px solid var(--border-light);
}

/* Modal Open & Rating Star Empty States */
body.modal-open {
  overflow: hidden;
}

svg.rating-star-empty {
  fill: var(--text-light);
  color: var(--text-light);
}

/* Narrow Container Utility */
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}
