/* ==========================================================================
   Toniebet (toniebetca.com) Custom Design System Stylesheet
   Follows JSON design specifications for colors, typography, components
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --primary-teal: #1C5A67;
  --primary-teal-dark: #0F3A43;
  --primary-teal-light: #247B8C;
  --primary-teal-transparent: rgba(28, 90, 103, 0.1);
  
  --secondary-cream: #F2EFE6;
  --secondary-cream-dark: #E3DECE;
  
  --accent-orange: #D87B3D;
  --accent-orange-dark: #B5612A;
  
  --neutral-white: #FFFFFF;
  --neutral-off-white: #F8F7F4;
  --neutral-light-gray: #E4E1DA;
  --neutral-gray: #9CA3AF;
  --neutral-dark-gray: #4B5563;
  --neutral-black: #111827;
  
  --state-error: #EF4444;
  --state-success: #10B981;
  --state-warning: #F59E0B;

  /* Fonts */
  --font-family: 'Inter', sans-serif;
  
  /* Border Radius */
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-none: none;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 25px 50px rgba(0,0,0,0.18);
  
  /* Container & Padding */
  --container-width: 1200px;
  --section-padding: 80px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--neutral-off-white);
  color: var(--neutral-black);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Scales */
.display-1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1, .h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

h2, .h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

h3, .h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

h4, .h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.body-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
}

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

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

.section-padding-y-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

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

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

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

/* Header / Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-light-gray);
  height: 80px;
  transition: all 0.3s ease;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-teal-dark);
}

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

.logo-text {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--accent-orange);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-dark-gray);
  transition: color 0.3s ease;
}

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

/* Call Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-teal-light);
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: var(--primary-teal);
  color: var(--neutral-white);
  box-shadow: var(--shadow-sm);
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-teal-dark);
  padding: 8px;
}

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

/* Mobile Navigation Drawer */
.mobile-menu-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--neutral-light-gray);
}

.mobile-menu-overlay.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-list .nav-link {
  font-size: 20px;
  font-weight: 600;
  display: block;
  padding: 8px 0;
}

.mobile-menu-cta {
  margin-top: auto;
  text-align: center;
  padding: 16px;
  background-color: var(--secondary-cream);
  color: var(--primary-teal-dark);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary-teal {
  background-color: var(--primary-teal);
  color: var(--neutral-white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
}

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

.btn-outline-cream {
  background-color: transparent;
  border: 2px solid var(--secondary-cream-dark);
  color: var(--primary-teal-dark);
  padding: 12px 30px;
  border-radius: var(--radius-full);
}

.btn-outline-cream:hover {
  background-color: var(--secondary-cream);
  border-color: var(--secondary-cream);
  color: var(--primary-teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--secondary-cream);
  color: var(--neutral-white);
  padding: 14px 32px;
  border-radius: var(--radius-full);
}

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

.btn-link-teal {
  background-color: transparent;
  color: var(--primary-teal);
  padding: 8px 0;
  font-size: 16px;
  text-decoration: underline;
}

.btn-link-teal:hover {
  color: var(--primary-teal-dark);
}

/* Badges */
.pill-cream {
  background-color: var(--secondary-cream);
  color: var(--primary-teal-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 12px;
}

/* Cards */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--neutral-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  height: 100%;
  align-items: center;
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-teal-transparent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
}

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

.service-card-heading {
  color: var(--primary-teal-dark);
  margin-top: 8px;
}

.service-card-text {
  color: var(--neutral-dark-gray);
  font-size: 14px;
  flex-grow: 1;
}

.service-card-link {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.service-card-link:hover {
  color: var(--primary-teal-dark);
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 20px;
  background-color: var(--neutral-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.testimonial-quote-icon {
  font-size: 48px;
  line-height: 1;
  color: var(--secondary-cream-dark);
  font-family: Georgia, serif;
}

.testimonial-body {
  font-style: italic;
  color: var(--neutral-dark-gray);
  font-size: 15px;
  flex-grow: 1;
}

.testimonial-stars {
  color: var(--accent-orange);
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-divider {
  height: 1px;
  background-color: var(--neutral-light-gray);
  width: 60px;
  margin: 0 auto;
}

.testimonial-author {
  color: var(--primary-teal);
  font-weight: 700;
}

/* Forms */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-dark-gray);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background-color: var(--secondary-cream);
  border: 1px solid transparent;
  color: var(--primary-teal-dark);
  padding: 14px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-textarea {
  border-radius: var(--radius-md);
  resize: vertical;
  min-height: 120px;
}

.form-input:focus {
  outline: none;
  background-color: var(--neutral-white);
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px var(--primary-teal-transparent);
}

.form-input::placeholder {
  color: var(--neutral-gray);
}

/* Form States */
.form-input.error {
  border-color: var(--state-error);
  background-color: rgba(239, 68, 68, 0.05);
}

.form-error-msg {
  color: var(--state-error);
  font-size: 12px;
  margin-top: 6px;
  padding-left: 8px;
}

/* Hero Component (Homepage Specific) */
.hero-section {
  background-color: var(--secondary-cream);
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-visual {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 480px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-subtitle {
  color: var(--neutral-dark-gray);
  font-weight: 500;
}

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

/* Banner component (Mission + Partners) */
.mission-partners-section {
  background-color: var(--primary-teal-dark);
  color: var(--neutral-white);
}

.mission-partners-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
}

.mission-feature {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.mission-feature-icon {
  color: var(--accent-orange);
  margin-top: 4px;
}

.mission-feature-icon svg {
  width: 24px;
  height: 24px;
}

.partner-panel {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.partner-overline {
  margin-bottom: 24px;
  color: var(--secondary-cream);
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.partner-logo-item {
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-light-gray);
  opacity: 0.75;
  letter-spacing: -0.02em;
}

/* Stats Strip */
.stats-strip {
  background-color: var(--neutral-white);
  border-bottom: 1px dashed var(--neutral-light-gray);
  padding: 48px 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

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

.stat-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--neutral-dark-gray);
  font-size: 14px;
  font-weight: 600;
}

/* Why Choose Us Split */
.why-choose-us-section {
  background-color: var(--neutral-white);
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px 0;
}

.why-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
}

.why-feature-item.accent {
  background-color: var(--primary-teal-transparent);
  color: var(--primary-teal-dark);
}

.why-feature-item.cream {
  background-color: var(--secondary-cream);
  color: var(--primary-teal-dark);
}

.why-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-teal);
}

/* Overlapping product showcase split */
.product-showcase-section {
  background-color: var(--neutral-off-white);
}

.product-showcase-image-wrap {
  position: relative;
  height: 380px;
  width: 100%;
}

.product-showcase-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Work Process steps timeline */
.work-process-section {
  background-color: var(--secondary-cream);
}

.work-process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.step-card {
  flex: 1;
  background-color: var(--neutral-white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 32px;
  width: 40px;
  height: 40px;
  background-color: var(--accent-orange);
  color: var(--neutral-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: var(--shadow-md);
}

.step-icon {
  margin-bottom: 16px;
  color: var(--primary-teal);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-title {
  color: var(--primary-teal-dark);
  margin-bottom: 8px;
}

.step-desc {
  color: var(--neutral-dark-gray);
  font-size: 14px;
}

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

.review-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.review-card-media {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.review-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-teal);
  background-color: var(--primary-teal-transparent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.review-platform {
  font-size: 13px;
  color: var(--neutral-gray);
  font-weight: 600;
}

.review-title {
  color: var(--primary-teal-dark);
  margin-bottom: 12px;
}

.review-summary {
  color: var(--neutral-dark-gray);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--neutral-light-gray);
  padding-top: 16px;
  margin-top: auto;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-orange);
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-score {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-teal);
}

/* Modal reviews */
.review-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.review-modal-box {
  background-color: var(--neutral-white);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--neutral-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--neutral-dark-gray);
  z-index: 10;
  transition: all 0.3s ease;
}

.review-modal-close:hover {
  transform: scale(1.05);
  color: var(--neutral-black);
}

.review-modal-media {
  height: 280px;
  width: 100%;
  overflow: hidden;
}

.review-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-modal-body {
  padding: 40px;
}

.review-modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.review-modal-title {
  color: var(--primary-teal-dark);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.review-modal-text {
  font-size: 15px;
  color: var(--neutral-dark-gray);
  line-height: 1.7;
}

.review-modal-text p {
  margin-bottom: 16px;
}

/* Play Page Curation Grid */
.curation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.curation-card {
  background-color: var(--neutral-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 4px solid var(--primary-teal-light);
  height: 100%;
}

.curation-duration {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-teal);
  letter-spacing: 0.5px;
  background-color: var(--primary-teal-transparent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.curation-title {
  color: var(--primary-teal-dark);
  font-size: 20px;
}

.curation-desc {
  color: var(--neutral-dark-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Page Split */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: flex-start;
}

.info-cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item-card {
  display: flex;
  gap: 16px;
  background-color: var(--neutral-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.info-item-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-teal-transparent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.info-item-icon svg {
  width: 22px;
  height: 22px;
}

.info-item-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--neutral-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-item-value {
  color: var(--primary-teal-dark);
  font-weight: 700;
  font-size: 16px;
}

.info-item-value a {
  color: inherit;
  text-decoration: none;
}

.info-item-value a:hover {
  color: var(--primary-teal);
}

/* Footer */
footer {
  background-color: var(--neutral-black);
  color: var(--neutral-light-gray);
  padding: 64px 0 32px 0;
  margin-top: 80px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--neutral-gray);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--neutral-white);
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: var(--neutral-gray);
  line-height: 1.8;
}

.footer-copy span {
  font-weight: 600;
  color: var(--neutral-white);
}

/* Page Intro Header Banner (For inner pages) */
.page-intro-header {
  background-color: var(--secondary-cream);
  padding: 140px 0 60px 0;
  text-align: left;
}

.page-intro-title {
  color: var(--primary-teal-dark);
  margin-top: 8px;
}

.page-intro-desc {
  color: var(--neutral-dark-gray);
  margin-top: 12px;
  max-width: 600px;
}

/* Privacy policy text details */
.privacy-sections {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-block {
  margin-bottom: 48px;
}

.privacy-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--primary-teal-dark);
}

.privacy-block-num {
  width: 32px;
  height: 32px;
  background-color: var(--primary-teal-transparent);
  color: var(--primary-teal);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.privacy-block-text {
  color: var(--neutral-dark-gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ==========================================================================
   Utility Classes & Layout Fixes
   ========================================================================== */
.text-teal { color: var(--primary-teal); }
.text-teal-dark { color: var(--primary-teal-dark); }
.text-teal-light { color: var(--primary-teal-light); }
.text-cream { color: var(--secondary-cream); }
.text-white { color: var(--neutral-white); }
.text-light-gray { color: var(--neutral-light-gray); }
.text-gray { color: var(--neutral-gray); }
.text-dark-gray { color: var(--neutral-dark-gray); }

.bg-white { background-color: var(--neutral-white); }
.bg-off-white { background-color: var(--neutral-off-white); }
.bg-cream { background-color: var(--secondary-cream); }
.bg-teal-dark { background-color: var(--primary-teal-dark); }

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

/* Margins */
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-24 { margin-top: 24px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }

.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Image overrides */
.why-choose-us-section img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 400px;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 420px;
}

/* Specific elements */
.cta-container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
}

.curation-footer {
  margin-top: auto;
  border-top: 1px solid var(--neutral-light-gray);
  padding-top: 16px;
}

.curation-custom-cta {
  margin-top: 64px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.privacy-section-desc {
  color: var(--neutral-gray);
  margin-bottom: 40px;
  font-weight: 600;
}

.privacy-block-text a {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
}

.services-grid-wrapper {
  row-gap: 40px;
  column-gap: 32px;
}

.services-cta-wrapper {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
}

.success-message {
  display: none;
  color: var(--state-success);
  margin-top: 16px;
  font-weight: 600;
}

.modal-rating-stars {
  color: var(--neutral-light-gray);
}

/* Responsiveness breakpoints */

/* Desktop & Laptop sizes (max-width 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 32px;
  }
}

/* Tablet (max-width 1024px) */
@media (max-width: 1024px) {
  .display-1 {
    font-size: 46px;
  }
  
  .display-2 {
    font-size: 34px;
  }
  
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .curation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .step-card {
    padding-top: 40px;
  }
  
  .step-number {
    top: -20px;
    left: 20px;
  }
}

/* Mobile & Tablet Toggle Breakpoint (max-width 768px) */
@media (max-width: 768px) {
  .display-1 {
    font-size: 36px;
  }
  
  .display-2 {
    font-size: 28px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mission-partners-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .curation-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  /* Show hamburger button and hide standard menu items */
  .nav-menu {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* Small mobile (max-width 375px) */
@media (max-width: 375px) {
  .display-1 {
    font-size: 30px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}
