/* Import modern fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Base Variables */
:root {
  /* Colors */
  --primary-main: #d49b6d;
  --primary-hover: #b88558;
  --primary-light: #f5ede6;
  
  --secondary-main: #1a2b22;
  --secondary-hover: #0f1a14;
  --secondary-light: #4a6b58;
  
  --accent-dark-green: #2a4035;
  --accent-mint-green: #e8f2ed;
  
  --bg-white: #ffffff;
  --bg-off-white: #f8f6f4;
  --bg-dark-pattern: #1a2b22;
  
  --text-dark: #1a2b22;
  --text-medium: #444444;
  --text-white: #ffffff;
  --text-muted: #777777;

  /* Typography Fonts */
  --font-primary: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-fallback: Arial, Helvetica, sans-serif;
  
  /* Layout */
  --container-max-width: 1170px;
  --grid-gap: 30px;
  --transition-speed: 0.3s;
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary), var(--font-fallback);
  background-color: var(--bg-white);
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* Typography elements */
h1 {
  font-family: var(--font-primary), var(--font-fallback);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  font-family: var(--font-primary), var(--font-fallback);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h3 {
  font-family: var(--font-primary), var(--font-fallback);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

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

p.large {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-medium);
}

p.base, p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-medium);
}

p.small, .text-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
}

.text-white-all * {
  color: var(--text-white) !important;
}

/* Layout Utilities */
.section-padding {
  padding-top: 90px;
  padding-bottom: 90px;
}

.bg-dark {
  background-color: var(--secondary-main);
}

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

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

.bg-accent-dark {
  background-color: var(--accent-dark-green);
}

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

/* Navigation Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-speed);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--font-primary), var(--font-fallback);
  font-weight: 800;
  font-size: 22px;
  color: var(--secondary-main);
  transition: transform 0.2s;
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

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

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--secondary-main);
  font-weight: 500;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
  border-bottom: 2px solid transparent;
}

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

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

/* Hamburger mobile menu button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--secondary-main);
}

/* Mobile Dropdown Menu */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  border-bottom: 2px solid var(--accent-mint-green);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 999;
}

.mobile-nav.active {
  max-height: 450px;
  opacity: 1;
}

.mobile-nav-list {
  list-style: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-main);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-off-white);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-main);
  padding-left: 8px;
  transition: all 0.2s;
}

/* Footer Section */
footer.site-footer {
  background-color: var(--secondary-main);
  color: var(--text-white);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 4px solid var(--primary-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
  color: var(--text-white);
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-main);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-main);
  padding-left: 4px;
  transition: all 0.2s;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icon-link:hover {
  background-color: var(--primary-main);
  transform: translateY(-3px);
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-white);
  transition: fill 0.3s;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--primary-main);
}

/* Button Component Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary-main);
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 10px rgba(212, 155, 109, 0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(212, 155, 109, 0.4);
}

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

.btn-dark {
  background: var(--secondary-main);
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--secondary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(26, 43, 34, 0.3);
}

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

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

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

/* Links default styling */
a.link-accent {
  color: var(--primary-main);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s;
}

a.link-accent:hover {
  color: var(--primary-hover);
}

/* Cards Default Styles */
.card-default {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

/* Horizontal Service Card style */
.service-card-horizontal {
  display: flex;
  gap: 24px;
  background: var(--bg-off-white);
  padding: 30px;
  border-radius: 16px;
  transition: background var(--transition-speed), transform var(--transition-speed);
  align-items: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card-horizontal:hover {
  background: var(--accent-mint-green);
  transform: translateY(-4px);
}

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: rgba(212, 155, 109, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

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

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-main);
  transition: stroke var(--transition-speed);
}

.service-card-horizontal:hover .service-card-icon svg {
  stroke: var(--text-white);
}

.service-card-info {
  flex-grow: 1;
}

.service-card-info h3 {
  margin-bottom: 8px;
}

.service-card-index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--secondary-main);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-top: 15px;
}

/* Feature service card style (large block) */
.service-feature-card {
  background: var(--secondary-main);
  padding: 40px;
  border-radius: 16px;
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-feature-card h3 {
  color: var(--text-white);
  font-size: 32px;
  margin-bottom: 20px;
}

.service-feature-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* Keyboard indicators */
*:focus-visible {
  outline: 2px solid var(--primary-main);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(212, 155, 109, 0.15);
}

/* Ticker Scrolling Marquee */
.ticker-container {
  width: 100%;
  background-color: var(--secondary-hover);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}

.ticker-wrap {
  display: inline-block;
  animation: ticker-slide 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 48px;
}

.ticker-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-main);
}

@keyframes ticker-slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Hero Section Styles */
.hero-section {
  background-color: var(--secondary-main);
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-main {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 580px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 45px;
}

.hero-stat-box {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.hero-stat-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.hero-image-wrapper {
  position: relative;
  height: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 43, 34, 0.2) 0%, rgba(26, 43, 34, 0.6) 100%);
}

/* Split layout grid utility */
.split-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* Pill badges */
.pill-badges-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--accent-dark-green);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  width: fit-content;
}

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

.split-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 480px;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Services Grid page specific structures */
.services-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.services-layout-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--grid-gap);
  align-items: stretch;
}

/* Progress Bars Section */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.progress-bar-item {
  width: 100%;
}

.progress-bar-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.progress-bar-track {
  width: 100%;
  height: 10px;
  background-color: var(--primary-light);
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--primary-main);
  border-radius: 10px;
  transition: width 1s ease-out;
}

/* FAQ Accordion Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}

.faq-accordion-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

.faq-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 600;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-accordion-header:hover {
  color: var(--primary-main);
}

.faq-accordion-header.active {
  color: var(--secondary-main);
  font-weight: 700;
}

.faq-accordion-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.faq-accordion-header.active .faq-accordion-icon {
  transform: rotate(45deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-bottom: 16px;
}

.faq-accordion-content p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Stats Testimonial Section */
.stats-testimonial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stats-testimonial-left {
  background-color: var(--secondary-main);
  padding: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--text-white);
}

.stats-testimonial-right {
  background-color: var(--bg-off-white);
  padding: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-testimonial-large-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--primary-main);
  line-height: 1;
  margin-bottom: 15px;
}

.stats-testimonial-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.stats-testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-main);
  stroke: var(--primary-main);
}

.stats-testimonial-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.stats-testimonial-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 480px;
  position: relative;
}

.stats-testimonial-card-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.stats-testimonial-card-author {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}

.stats-testimonial-card-title {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

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

.review-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  text-align: left;
  background: none;
  font-family: inherit;
  padding: 0;
  width: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-main);
}

.review-img-box {
  height: 240px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

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

.review-badge-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-main);
  color: var(--text-white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

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

.review-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.review-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

.review-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-card-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-main);
  stroke: var(--primary-main);
}

.review-card-rating span {
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary-main);
  margin-left: 6px;
}

/* Modal details */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 43, 34, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.modal-container {
  background-color: var(--bg-white);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.modal-header-img {
  height: 280px;
  position: relative;
}

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

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s;
}

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

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary-main);
  stroke-width: 2.5;
}

.modal-body {
  padding: 40px;
}

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

.modal-genre-badge {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.modal-platform-info {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.modal-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.modal-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--primary-light);
  padding-bottom: 20px;
}

.modal-rating-row svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-main);
  stroke: var(--primary-main);
}

.modal-rating-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-main);
  margin-left: 8px;
}

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

/* Form inputs & interactive states */
.form-group {
  margin-bottom: 24px;
}

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

.form-input {
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  width: 100%;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  color: var(--text-dark);
}

.form-input:focus {
  border-color: var(--primary-main);
  outline: none;
  box-shadow: 0 0 0 4px rgba(212, 155, 109, 0.15);
}

.form-input.input-error {
  border-color: #d32f2f;
}

.form-input:disabled {
  background: #f0f0f0;
  opacity: 0.6;
  cursor: not-allowed;
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

/* Contact layout structures */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

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

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-main);
}

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

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

.contact-card-box {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.play-session-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.play-session-badge {
  background-color: var(--accent-mint-green);
  color: var(--secondary-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.play-session-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.play-session-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Simple Banner CTA styles */
.action-banner {
  background-color: var(--primary-main);
  padding: 80px 0;
  text-align: center;
  color: var(--text-white);
}

.action-banner h2 {
  color: var(--text-white);
  font-size: 40px;
  margin-bottom: 16px;
}

.action-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 32px auto;
  font-size: 18px;
}

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

.privacy-section-block {
  margin-bottom: 40px;
}

.privacy-section-block h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 10px;
}

.privacy-section-block p {
  margin-bottom: 15px;
  font-size: 15px;
}

.privacy-section-block ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.privacy-section-block li {
  margin-bottom: 8px;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 34px;
  }
  
  .hero-grid {
    gap: 30px;
  }
  .hero-image-wrapper {
    height: 450px;
  }
  
  .split-layout-grid {
    gap: 40px;
  }
  .split-image-wrapper {
    height: 400px;
  }
  
  .stats-testimonial-left,
  .stats-testimonial-right {
    padding: 60px;
  }
  
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  /* Tablet layout optimizations */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-subtitle {
    margin-right: auto;
    margin-left: auto;
  }
  
  .hero-stats {
    justify-content: center;
    margin-top: 30px;
  }
  
  .hero-image-wrapper {
    height: 380px;
    grid-row: 1; /* Place image on top on tablet/mobile if desired, or let content flow */
  }
  
  .split-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .split-image-wrapper {
    height: 350px;
    grid-row: 1; /* put images on top on stacked layout */
  }
  
  .stats-testimonial-section {
    grid-template-columns: 1fr;
  }
  
  .stats-testimonial-left {
    align-items: center;
    text-align: center;
  }
  
  .services-layout-main {
    grid-template-columns: 1fr;
  }
  
  .services-grid-wrapper {
    grid-template-columns: 1fr;
  }
  
  .play-session-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 767px) {
  /* Mobile Layout - Single Column stack */
  h1 {
    font-size: 32px !important;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .header-container {
    height: 70px;
  }
  
  .mobile-nav {
    top: 70px;
  }
  
  /* Hide desktop menu, show mobile controls */
  .nav-menu,
  .header-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-section {
    min-height: auto;
    margin-top: 70px;
  }
  
  .hero-main {
    padding: 40px 0;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-image-wrapper {
    height: 280px;
  }
  
  .split-image-wrapper {
    height: 250px;
  }
  
  .service-card-horizontal {
    flex-direction: column;
    gap: 16px;
  }
  
  .service-feature-card {
    height: auto;
  }
  
  .stats-testimonial-left,
  .stats-testimonial-right {
    padding: 40px 24px;
  }
  
  .play-session-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid-2col {
    grid-template-columns: 1fr; /* Single column review list on mobile */
  }
  
  .review-img-box {
    height: 200px;
  }
  
  .modal-body {
    padding: 24px;
  }
  
  .modal-header-img {
    height: 200px;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  /* Buttons expand to full width on mobile */
  .btn {
    width: 100%;
  }
}
