/* ==========================================================================
   picklesbet.com - Global Style Sheet
   Created in accordance with Matis Beauty design parameters.
   ========================================================================== */

/* Design Tokens & Variables */
:root {
  --primary: #4c40d4;
  --primary-hover: #3a30a8;
  --primary-light: #efecfc;
  --secondary: #0b1c39;
  
  --accent-purple-light: #e5e2fa;
  --accent-purple-medium: #aca2f2;
  
  --bg-white: #ffffff;
  --bg-off-white: #f8f7fc;
  --bg-section-grey: #f3f3f7;
  
  --text-dark: #0b1c39;
  --text-medium-grey: #4a4a4a;
  --text-light-grey: #7a7a7a;
  --text-white: #ffffff;
  
  --font-primary: 'Inter', 'Roboto', 'DM Sans', sans-serif;
  --font-fallback: Arial, Helvetica, sans-serif;
  
  --container-max: 1200px;
  --grid-gap: 24px;
  
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-round: 24px;
  
  --transition-default: all 0.3s ease;
  --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

/* Typography elements */
h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

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

p {
  color: var(--text-medium-grey);
  font-size: 16px;
  line-height: 1.5;
}

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

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

.label-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background-color: var(--accent-purple-light);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--border-radius-round);
  display: inline-block;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Structure Containers */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

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

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

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

.section-bg-dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* Grid & Flex layouts */
.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);
}

/* Header & Navigation bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

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

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-default);
}

.nav-links a:hover, 
.nav-links a.active {
  color: var(--primary);
}

.navbar-btn {
  text-decoration: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--border-radius-round);
  font-size: 14px;
  transition: var(--transition-default);
}

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

/* Mobile Navigation Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-dark);
  stroke-width: 2;
  fill: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  z-index: 999;
  list-style: none;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.mobile-nav li {
  margin-bottom: 16px;
}

.mobile-nav a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: 90px;
  background: transparent;
  position: relative;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-off-white);
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--grid-gap);
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 32px;
}

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

.hero-image {
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-stat-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--border-radius-round);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(76, 64, 212, 0.4);
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background-color: rgba(11, 28, 57, 0.85); /* 85% opacity #0b1c39 */
  color: var(--text-white);
  padding: 20px;
  border-radius: var(--border-radius-md);
  max-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-floating-card h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 6px;
}

.hero-floating-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: var(--border-radius-round);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-default);
}

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

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

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(76, 64, 212, 0.2);
}

/* Card Structures */
.card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition-default);
}

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

/* Services Page & Cards Styling */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.service-card {
  position: relative;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-default);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition-default);
}

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

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

.service-card p {
  font-size: 15px;
  color: var(--text-medium-grey);
  margin-bottom: 20px;
}

/* Timeline/Process Steps component */
.process-section {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.process-image-box {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.process-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.process-step {
  display: flex;
  gap: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

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

/* Testimonial slider style sheets */
.testimonials-section {
  overflow: hidden;
}

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

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: #f59e0b; /* Yellow rating stars */
}

.rating-stars svg.empty {
  fill: #e5e7eb;
}

.testimonial-text {
  font-style: italic;
  font-size: 15px;
  color: var(--text-medium-grey);
  margin-bottom: 24px;
}

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

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

/* FAQ accordion styles */
.faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  cursor: pointer;
  transition: var(--transition-default);
}

.faq-item:hover {
  background-color: rgba(248, 247, 252, 0.5);
  padding-left: 8px;
}

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
}

.faq-item.active {
  background-color: var(--bg-off-white);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--primary);
  padding: 20px;
  margin-bottom: 12px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-top: 12px;
}

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

.faq-image-box img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

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

.review-game-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition-default);
}

.review-game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary);
}

.review-game-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--bg-section-grey);
}

.review-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-badge-genre {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--border-radius-round);
}

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

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

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

.review-game-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
}

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

.review-btn-more {
  align-self: flex-start;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-default);
}

.review-btn-more:hover {
  color: var(--primary-hover);
  padding-left: 4px;
}

/* Modal Popup styling */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(11, 28, 57, 0.7); /* dark overlay opacity */
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content-container {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn 0.3s ease;
}

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

.modal-header-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: var(--bg-section-grey);
}

.modal-body {
  padding: 32px;
  position: relative;
}

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

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

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-dark);
  stroke-width: 2;
  fill: none;
}

.modal-genre-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 4px 10px;
  border-radius: var(--border-radius-round);
  margin-bottom: 12px;
}

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

.modal-game-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.modal-game-score {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--accent-purple-light);
  padding: 4px 12px;
  border-radius: var(--border-radius-sm);
}

.modal-text-content {
  font-size: 15px;
  color: var(--text-medium-grey);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Play Page Styling */
.play-recommendation-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: var(--transition-default);
}

.play-recommendation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary);
}

.play-duration-pill {
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--border-radius-round);
  display: inline-block;
  margin-bottom: 16px;
}

.play-recommendation-card h3 {
  margin-bottom: 12px;
}

.play-recommendation-card p {
  color: var(--text-medium-grey);
  font-size: 15px;
  line-height: 1.6;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

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

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius-sm);
  padding: 14px 16px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-family: var(--font-primary), var(--font-fallback);
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 64, 212, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light-grey);
}

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

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

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

.contact-info-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

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

/* Footer Section */
.footer {
  background-color: var(--secondary); /* Dark Blue #0b1c39 */
  color: var(--text-white);
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-column h4 {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-white);
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12); /* 10-15% opacity divider */
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.footer-bottom-links a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

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

/* ==========================================================================
   Breakpoints & Media Queries
   ========================================================================== */

/* Desktop / Laptop scaling */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

/* Tablet Layout (768px - 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Layout (< 768px) */
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  /* Reduce font sizes by 15-20% */
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  h4 { font-size: 17px; }
  
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  /* Stack layouts in 1 column */
  .grid-2, .grid-3, .grid-4, .services-grid, .testimonials-grid, .reviews-grid-2col {
    grid-template-columns: 1fr;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-section {
    padding-top: 110px;
    padding-bottom: 60px;
  }
  
  .hero-image-wrapper {
    margin-top: 20px;
  }
  
  .hero-stat-badge {
    left: 10px;
    font-size: 16px;
    padding: 10px 18px;
  }
  
  .hero-floating-card {
    right: 10px;
    bottom: -10px;
    padding: 14px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Hamburger navigation */
  .nav-links, .navbar-btn {
    display: none;
  }
  
  .menu-toggle {
    display: block;
  }

  .mobile-menu-active {
    display: block;
  }
  
  /* Button widths 100% */
  .btn {
    width: 100%;
  }
  
  .navbar-btn {
    display: none; /* hidden on mobile header, items go inside side drawer if needed */
  }
}
