@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --primary-main: #d25b3a;
  --primary-hover: #b44c2f;
  --primary-light: #fdf3ef;
  --secondary-main: #1c4b4a;
  --secondary-hover: #133635;
  --secondary-light: #e8f1f0;
  
  --bg-white: #ffffff;
  --bg-cream: #faf7f4;
  --bg-dark-section: #1c4b4a;
  
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light-grey: #777777;
  --text-white: #ffffff;

  /* Fonts */
  --font-primary: 'DM Sans', sans-serif;
  --font-secondary: 'Playfair Display', serif;

  /* Font Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Spacing */
  --space-base: 16px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-section-top: 80px;
  --space-section-bottom: 80px;
  
  --container-max-width: 1170px;
  --grid-gap: 30px;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: var(--weight-regular);
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: var(--font-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
}

h1 em, .heading-accent {
  font-family: var(--font-secondary);
  font-style: italic;
  font-weight: var(--weight-bold);
  color: var(--primary-main);
}

h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: var(--weight-bold);
}

h3 {
  font-size: 22px;
  font-weight: var(--weight-bold);
  line-height: 1.3;
}

.section-label {
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-main);
  margin-bottom: var(--space-sm);
  display: block;
}

p.large {
  font-size: 18px;
  line-height: 1.6;
}

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

a {
  color: var(--primary-main);
  text-decoration: none;
  font-weight: var(--weight-semibold);
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Focus Indicator Style for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-main);
  outline-offset: 3px;
}

/* Layout Utilities */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.section {
  padding-top: var(--space-section-top);
  padding-bottom: var(--space-section-bottom);
}

.bg-cream {
  background-color: var(--bg-cream);
}

.bg-dark-section {
  background-color: var(--bg-dark-section);
  color: var(--text-white);
}

.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section p {
  color: var(--text-white);
}

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

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

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

/* Flex Utilities */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Margin and Padding Utilities (to replace inline styling) */
.margin-top-sm { margin-top: var(--space-sm); }
.margin-top-md { margin-top: var(--space-md); }
.margin-top-lg { margin-top: var(--space-lg); }
.margin-top-xl { margin-top: var(--space-xl); }
.margin-top-xxl { margin-top: 64px; }

.margin-bottom-xs { margin-bottom: var(--space-xs); }
.margin-bottom-sm { margin-bottom: var(--space-sm); }
.margin-bottom-md { margin-bottom: var(--space-md); }
.margin-bottom-lg { margin-bottom: var(--space-lg); }
.margin-bottom-xl { margin-bottom: var(--space-xl); }
.margin-bottom-xxl { margin-bottom: 64px; }

.padding-lg { padding: var(--space-lg); }
.padding-xl { padding: var(--space-xl); }
.padding-xxl { padding: var(--space-xxl); }
.padding-large-box { padding: 48px; }

.text-center { text-align: center; }
.max-width-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.height-auto { height: auto; }
.text-dark-color { color: var(--text-dark); }
.text-white-color { color: var(--text-white); }
.font-size-14 { font-size: 14px; }

/* Components */

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  transition: var(--transition-normal);
  text-decoration: none !important;
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(210, 91, 58, 0.3);
}

.btn-primary:active {
  transform: scale(0.96);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-main);
  color: var(--primary-main);
}

.btn-outline:hover {
  background-color: var(--primary-main);
  color: var(--text-white);
  text-decoration: none;
}

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

.btn-secondary-outline:hover {
  background-color: var(--secondary-light);
  color: var(--secondary-main);
  text-decoration: none;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--bg-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: 50px;
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.badge svg {
  color: var(--primary-main);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Header & Navigation */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 24px;
  font-weight: var(--weight-extrabold);
  color: var(--secondary-main);
  text-decoration: none !important;
}

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

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

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

nav.main-nav a {
  color: var(--text-dark);
  font-weight: var(--weight-medium);
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition-fast);
  padding-bottom: 4px;
}

nav.main-nav a:hover {
  color: var(--primary-main);
}

nav.main-nav a.active {
  color: var(--primary-main);
  border-bottom: 2px solid var(--primary-main);
}

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

/* Hamburger mobile menu button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  padding: var(--space-xs);
}

.mobile-menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Mobile Nav Pane */
.mobile-nav-pane {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--secondary-light);
  padding: var(--space-lg) var(--space-md);
  z-index: 999;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mobile-nav-pane.active {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}

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

.mobile-nav-pane ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-pane a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: var(--weight-medium);
  display: block;
}

.mobile-nav-pane a.active {
  color: var(--primary-main);
  border-left: 3px solid var(--primary-main);
  padding-left: var(--space-sm);
}

/* Main Layout Offset */
main {
  margin-top: 80px;
}

/* Hero Section */
.hero-split {
  align-items: center;
}

.hero-content {
  padding-right: var(--space-lg);
}

.hero-content h1 {
  margin-bottom: var(--space-md);
}

.hero-content p {
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Overlapping Badge System in Hero */
.hero-badges-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-badge-pill {
  position: absolute;
  pointer-events: auto;
}

.hero-badge-pill:nth-child(1) {
  top: 15%;
  left: -20px;
}

.hero-badge-pill:nth-child(2) {
  top: 45%;
  right: -20px;
}

.hero-badge-pill:nth-child(3) {
  bottom: 15%;
  left: 10px;
}

.hero-badge-pill:nth-child(4) {
  top: -15px;
  right: 50px;
}

/* Stats Section */
.stats-header-row {
  margin-bottom: var(--space-xxl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.stat-card-white {
  background-color: var(--bg-white);
  border: 1px solid #f0f0f0;
}

.stat-card-white h3 {
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

.stat-card-icon-center {
  margin: 0 auto var(--space-md) auto;
}

.stat-number {
  font-size: 48px;
  font-weight: var(--weight-bold);
  color: var(--primary-main);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-split {
  align-items: stretch;
}

.why-image-col {
  position: relative;
}

.why-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-content-col {
  background-color: var(--secondary-main);
  border-radius: 12px;
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-content-col h2 {
  color: var(--text-white);
  margin-bottom: var(--space-lg);
}

.why-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  color: var(--text-white);
}

.why-benefit-icon {
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-main);
  flex-shrink: 0;
}

.why-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.why-benefit-text h3 {
  color: var(--text-white);
  margin-bottom: 4px;
  font-size: 18px;
}

.why-benefit-text p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  margin-top: var(--space-xxl);
}

.process-step {
  display: flex;
  flex-direction: column;
}

.process-num-box {
  background-color: var(--secondary-main);
  color: var(--text-white);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: var(--weight-bold);
  font-size: 20px;
  margin-bottom: var(--space-md);
  transition: var(--transition-normal);
}

.process-step:hover .process-num-box {
  background-color: var(--primary-main);
  transform: translateY(-2px);
}

.process-step h3 {
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: 15px;
  color: var(--text-medium);
}

/* Testimonials Section */
.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xxl) auto;
}

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

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: var(--space-xxl);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #f0f0f0;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.stars-row {
  display: flex;
  gap: 2px;
  color: #ffb400;
  margin-bottom: var(--space-md);
}

.stars-row svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonial-quote {
  font-style: italic;
  font-size: 17px;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

/* Logo Strip */
.logo-strip-section {
  padding: 40px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  background-color: var(--bg-cream);
}

.logo-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.logo-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: var(--weight-bold);
  font-size: 18px;
  color: var(--text-light-grey);
  opacity: 0.6;
  filter: grayscale(1);
  transition: var(--transition-fast);
}

.logo-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logo-item svg {
  width: 24px;
  height: 24px;
}

/* Services Grid (Card styles) */
.services-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xxl) auto;
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 8px;
  color: var(--primary-main);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
  transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary-main);
  color: var(--text-white);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
  font-size: 15px;
}

.service-card-link {
  color: var(--primary-main);
  font-weight: var(--weight-bold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

.service-card-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Service Grid Orange Block Card */
.service-card-orange-block {
  background-color: var(--primary-main);
  color: var(--text-white);
  border-radius: 12px;
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.service-card-orange-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(210, 91, 58, 0.2);
}

.service-card-orange-block h3 {
  color: var(--text-white);
  font-size: 24px;
  margin-bottom: var(--space-md);
}

.service-card-orange-block p {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-xl);
  font-size: 15px;
}

.service-card-orange-block .btn {
  background-color: var(--secondary-main);
  color: var(--text-white);
}

.service-card-orange-block .btn:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

/* Game Reviews Page Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.game-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  cursor: pointer;
  text-align: left;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.game-card-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.game-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

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

.game-card-genre {
  font-size: 12px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  color: var(--primary-main);
  background-color: var(--primary-light);
  padding: 4px 10px;
  border-radius: 4px;
}

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

.game-card-title {
  font-size: 22px;
  margin-bottom: var(--space-sm);
}

.game-card-summary {
  font-size: 15px;
  color: var(--text-medium);
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: var(--space-md);
  margin-top: auto;
}

.score-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: var(--weight-bold);
  color: var(--secondary-main);
}

.score-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-main);
  color: var(--primary-main);
}

.score-number {
  font-size: 16px;
  color: var(--primary-main);
}

.read-review-trigger {
  color: var(--primary-main);
  font-weight: var(--weight-semibold);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Game Review Modal styling */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(28, 75, 74, 0.7); /* Dark teal overlay */
  backdrop-filter: blur(5px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

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

.modal-container {
  background-color: var(--bg-white);
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  animation: modalFadeIn 0.3s ease-out forwards;
  position: relative;
}

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

.modal-close-btn {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background-color: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

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

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

.modal-hero {
  position: relative;
  height: 260px;
  background-color: var(--secondary-main);
}

.modal-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

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

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

.modal-genre {
  font-size: 13px;
  font-weight: var(--weight-bold);
  color: var(--primary-main);
  background-color: var(--primary-light);
  padding: 4px 12px;
  border-radius: 4px;
}

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

.modal-title {
  font-size: 32px;
  margin-bottom: var(--space-md);
}

.modal-rating-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: var(--space-md);
}

.modal-star-group {
  display: flex;
  gap: 2px;
  color: #ffb400;
}

.modal-star-group svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.modal-score-text {
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--primary-main);
}

.modal-full-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: var(--space-md);
}

/* Play Now (Session Picks) Cards */
.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.play-card {
  background-color: var(--bg-white);
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-normal);
}

.play-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.play-time-badge {
  background-color: var(--primary-light);
  color: var(--primary-main);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: var(--weight-bold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.play-card h2 {
  font-size: 24px;
  margin-bottom: var(--space-md);
}

.play-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.play-card-icon {
  color: var(--secondary-main);
  margin-bottom: var(--space-md);
}

.play-card-icon svg {
  width: 44px;
  height: 44px;
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.form-control {
  background-color: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 16px 18px;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary-main);
  outline: none;
  box-shadow: 0 0 0 3px rgba(210, 91, 58, 0.1);
}

.form-control::placeholder {
  color: var(--text-light-grey);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%231a1a1a%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
}

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

/* Contact Grid & Map Box */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
}

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

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

.contact-info-icon {
  background-color: var(--secondary-light);
  color: var(--secondary-main);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

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

.contact-info-text h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 15px;
  color: var(--text-medium);
}

.map-placeholder-box {
  margin-top: var(--space-xxl);
  border-radius: 8px;
  height: 300px;
  background-color: var(--secondary-main);
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-placeholder-box svg {
  width: 40px;
  height: 40px;
  color: var(--primary-main);
  margin-bottom: var(--space-md);
}

.map-placeholder-box h3 {
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.map-placeholder-box p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  max-width: 320px;
}

/* Footer CTA Block */
.footer-cta {
  background-color: var(--bg-cream);
  border-top: 1px solid #f0f0f0;
}

.footer-cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-cta-left h2 {
  margin-bottom: var(--space-md);
}

.footer-cta-left p {
  margin-bottom: var(--space-xl);
}

.footer-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 16px;
  font-weight: var(--weight-medium);
  color: var(--text-dark);
}

.footer-feature-item svg {
  color: var(--primary-main);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-cta-right {
  background-color: var(--bg-white);
  padding: var(--space-xxl);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Site Footer Bottom */
footer.site-footer {
  background-color: var(--secondary-main);
  color: var(--text-white);
  padding: var(--space-xxl) 0;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: var(--space-xxl);
  margin-bottom: var(--space-lg);
}

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

.footer-branding .logo-link {
  color: var(--text-white);
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 320px;
}

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

.footer-social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-normal);
}

.footer-social-btn:hover {
  background-color: var(--primary-main);
  transform: scale(1.05);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-contacts-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  text-align: right;
}

.footer-contacts-col h4 {
  color: var(--text-white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contacts-col p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

.footer-contacts-col a {
  color: var(--text-white);
}

.footer-contacts-col a:hover {
  color: var(--primary-main);
}

.footer-legal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links-row {
  display: flex;
  gap: var(--space-lg);
}

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

.footer-links-row a:hover {
  color: var(--primary-main);
  text-decoration: underline;
}

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

/* Privacy Page Content Layout */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section-block {
  margin-bottom: var(--space-xl);
}

.privacy-section-title {
  font-size: 22px;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.privacy-step-num {
  background-color: var(--primary-light);
  color: var(--primary-main);
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.privacy-section-block p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Banner / Header Title Hero sections */
.page-title-banner {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  border-bottom: 1px solid #f0f0f0;
}

.page-title-banner .badge {
  margin-bottom: var(--space-sm);
}

.page-title-banner h1 {
  margin-bottom: var(--space-sm);
}

.page-title-banner p {
  color: var(--text-medium);
  font-size: 18px;
  max-width: 650px;
}

/* Responsive Breakpoints */

/* Desktop (Large screens) */
@media (min-width: 1200px) {
  /* Default styles apply */
}

/* Tablet Layout (768px - 1199px) */
@media (max-width: 1199px) {
  :root {
    --space-section-top: 60px;
    --space-section-bottom: 60px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Layout (< 768px) */
@media (max-width: 767px) {
  :root {
    --space-section-top: 50px;
    --space-section-bottom: 50px;
  }
  
  /* Stack grid layouts to 1 column */
  .grid-2,
  .grid-3,
  .grid-4,
  .services-grid-layout,
  .reviews-grid,
  .play-grid,
  .process-grid,
  .stats-grid,
  .testimonials-grid,
  .why-split,
  .hero-split,
  .contact-grid,
  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  /* Header adjustments */
  header.site-header {
    height: 70px;
  }
  
  .mobile-nav-pane {
    top: 70px;
  }
  
  main {
    margin-top: 70px;
  }
  
  /* Menu Button display */
  .mobile-menu-btn {
    display: block;
  }
  
  nav.main-nav,
  .nav-actions .btn {
    display: none;
  }
  
  /* Hero typography scaling */
  h1 {
    font-size: 32px !important;
  }
  
  /* Badges positioning in mobile */
  .hero-image-wrapper {
    margin-top: var(--space-xxl);
  }
  
  .hero-badges-container {
    position: relative;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-top: var(--space-md);
  }
  
  .hero-badge-pill {
    position: static;
  }
  
  /* Section elements padding/alignment */
  .hero-content {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .why-content-col {
    padding: var(--space-xl);
  }
  
  .why-image-col {
    order: -1;
  }
  
  .why-img {
    min-height: 250px;
  }
  
  .stats-header-row {
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  
  .testimonial-card {
    padding: var(--space-xl);
  }
  
  .footer-cta-right {
    padding: var(--space-xl);
  }
  
  .footer-contacts-col {
    text-align: left;
  }
  
  .footer-legal-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links-row {
    justify-content: center;
  }
  
  .modal-body {
    padding: var(--space-xl);
  }
  
  .modal-hero {
    height: 180px;
  }
  
  .modal-title {
    font-size: 26px;
  }
}
