/* ===========================================
   RadiCare Website Clone - Stylesheet
   =========================================== */

/* CSS Custom Properties - Design System */
:root {
  /* Colors */
  --color-primary: #1B4332;
  --color-primary-dark: #143026;
  --color-sage-light: #C5D5BC;
  --color-sage-medium: #A8B99F;
  --color-sage-dark: #8FA07A;
  --color-white: #FFFFFF;
  --color-off-white: #F8F8F8;
  --color-text-dark: #333333;
  --color-text-muted: #666666;
  --color-text-light: #999999;
  
  /* Typography */
  --font-heading: 'PT Serif', Georgia, serif;
  --font-body: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing - generous for breathing room */
  --spacing-xs: 12px;
  --spacing-sm: 20px;
  --spacing-md: 32px;
  --spacing-lg: 60px;
  --spacing-xl: 80px;
  --spacing-xxl: 120px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 1em;
}

.italic {
  font-weight: 700;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===========================================
   NAVIGATION
   =========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: none;
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-full {
  height: 40px;
  width: auto;
}

.logo-symbol {
  font-size: 28px;
  margin-right: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--color-primary);
  background-color: var(--color-sage-light);
}

.nav-link .arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background-color: var(--color-sage-light);
  color: var(--color-primary);
}

/* CTA Button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

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

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

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

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

.btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px var(--container-padding) 100px;
  background-color: #1a2530;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 86px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 35px;
  letter-spacing: -2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 80px;
}

.hero .btn-primary {
  padding: 18px 44px;
  font-size: 16px;
}

.btn-secondary-light {
  padding: 18px 44px;
  font-size: 16px;
  font-weight: 600;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.btn-secondary-light:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  display: none;
}

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

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ===========================================
   COMPETITIVE ADVANTAGES SECTION - NEW
   =========================================== */
.advantages-section-new {
  background: linear-gradient(180deg, #faf8f5 0%, #f5f2ed 100%);
  position: relative;
}

.advantages-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.advantages-section-new > * {
  position: relative;
  z-index: 1;
}

/* Features grid - light theme */
.advantages-features-light {
  padding: 80px 0 60px;
  position: relative;
}

.advantages-features-light > .container {
  position: relative;
  z-index: 2;
}

.advantages-grid-box {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.advantages-features-light .advantage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(26, 71, 42, 0.1);
}

.advantages-features-light .advantage-row:last-child {
  border-bottom: none;
}

/* Center single item in row */
.advantages-features-light .advantage-row:last-child .advantage-feature-light:only-child {
  grid-column: 1 / -1;
  max-width: 700px;
  margin: 0 auto;
  border-right: none;
}

.advantage-feature-light {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 65px 60px;
  border-right: 1px solid rgba(26, 71, 42, 0.12);
  transition: background 0.3s ease;
}

.advantage-feature-light:last-child {
  border-right: none;
}

.advantage-feature-light:hover {
  background: rgba(26, 71, 42, 0.04);
}

.advantage-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d5a3d 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 34px;
  height: 34px;
  color: var(--color-white);
}

.advantage-number-small {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.4;
  letter-spacing: 1px;
}

.advantage-info-light {
  flex: 1;
}

.advantage-title-light {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.advantage-desc-light {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}

/* CTA area - light */
.advantages-cta-light {
  padding: 30px 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.btn-large {
  padding: 18px 45px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 1100px) {
  .advantage-feature-light {
    padding: 40px 35px;
    gap: 20px;
  }
  
  .advantage-icon {
    width: 55px;
    height: 55px;
  }
  
  .advantage-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .advantage-title-light {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .advantages-features-light .advantage-row {
    grid-template-columns: 1fr;
  }
  
  .advantage-feature-light {
    border-right: none;
    border-bottom: 1px solid rgba(26, 71, 42, 0.12);
  }
  
  .advantages-features-light .advantage-row:last-child .advantage-feature-light:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .advantages-features-light {
    padding: 50px 0 30px;
  }
  
  .advantages-grid-box {
    border-radius: var(--radius-md);
    margin: 0 15px;
  }
  
  .advantage-feature-light {
    padding: 35px 20px;
    gap: 18px;
  }
  
  .advantage-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
  
  .advantage-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .advantage-number-small {
    font-size: 12px;
  }
  
  .advantage-title-light {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .advantage-desc-light {
    font-size: 15px;
  }
  
  .advantages-cta-light {
    padding: 20px 0 10px;
  }
  
  .btn-large {
    padding: 16px 35px;
    font-size: 16px;
  }
}

/* ===========================================
   COMMON ISSUES SECTION
   =========================================== */
.issues-section {
  padding-bottom: var(--spacing-xxl);
  background: linear-gradient(180deg, #faf8f5 0%, #f5f2ed 100%);
  position: relative;
  overflow: hidden;
}

.issues-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.issues-section > * {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 16px;
  padding-left: 50px;
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

/* Issues section header now uses shared .styled-header styles */

/* ===========================================
   STYLED HEADER - Reusable Component
   =========================================== */
.section-header-wrapper {
  background-color: var(--color-primary);
  padding: var(--spacing-xl) 0;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-header-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.section-header-wrapper > * {
  position: relative;
  z-index: 1;
}

/* Gradient Header - Clean gradient design for all section headers */
.section-header-wrapper.gradient-header {
  background: linear-gradient(135deg, #1a4d3a 0%, #0d2e23 60%, #0a241c 100%);
  padding: var(--spacing-xxl) 0;
  overflow: hidden;
}

.section-header-wrapper.gradient-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 0% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-header-wrapper.gradient-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.section-header-wrapper .styled-header {
  margin-bottom: 0;
}

.styled-header {
  margin-bottom: var(--spacing-xl);
}

.styled-header.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.styled-header-left {
  /* Left side with label and title */
}

.styled-header-right {
  padding-top: 10px;
}

/* Light theme for colored backgrounds */
.section-header-wrapper .section-label {
  color: var(--color-white);
}

.section-header-wrapper .section-label::before {
  background-color: var(--color-white);
}

.section-header-wrapper .styled-header-title {
  color: var(--color-white);
}

.section-header-wrapper .styled-header-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.styled-header-title {
  font-family: var(--font-heading);
  font-size: 46px;
  color: var(--color-text-dark);
  line-height: 1.2;
  font-weight: 700;
}

.styled-header-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Generic section styles (for other sections) */
.section {
  padding: var(--spacing-xxl) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  padding: 0 var(--spacing-md);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 46px;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* Card Carousel */
/* ===========================================
   ISSUES ACCORDION WITH IMAGE
   =========================================== */
.issues-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.issues-accordion {
  max-width: 100%;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  padding-left: 8px;
}

.accordion-number {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  min-width: 32px;
}

.accordion-title {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

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

.accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-primary);
  transition: transform 0.3s ease;
}

.accordion-icon::before {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-icon::after {
  width: 2px;
  height: 20px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-inner {
  padding: 0 0 32px 56px;
}

.accordion-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.accordion-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.accordion-link:hover {
  gap: 12px;
}

/* Image Display - Right Side */
.issues-image-display {
  position: sticky;
  top: 100px;
}

.issues-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.issues-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.issues-image.active {
  opacity: 1;
}

/* Mobile: Stack vertically */
@media (max-width: 900px) {
  .issues-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .issues-image-display {
    position: relative;
    top: 0;
    order: -1;
  }
  
  .issues-image-wrapper {
    aspect-ratio: 16/9;
  }
}

/* Legacy carousel styles (keeping for reference) */
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 33.333%;
  padding: 20px 10px;
  box-sizing: border-box;
}

.carousel-container {
  padding: 0 calc(var(--container-padding) - 10px);
}

/* Issues Grid */
.issues-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.masonry-column {
  display: contents;
}

.masonry-column-offset {
  display: contents;
}

.masonry-card {
  height: auto;
}

/* Issue Cards */
.issue-card {
  background: linear-gradient(145deg, #f0f9f4 0%, #e8f5ed 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid rgba(26, 77, 58, 0.1);
}

.issue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  background: linear-gradient(145deg, #f5fbf7 0%, #ecf7f0 100%);
  border-color: rgba(26, 77, 58, 0.15);
}

.issue-card-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.issue-card-content {
  padding: 40px 32px 48px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.issue-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 14px;
  font-weight: 700;
}

.issue-card-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.card-link .arrow {
  transition: transform 0.2s ease;
  font-size: 16px;
}

.card-link:hover .arrow {
  transform: translateX(6px);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-text-light);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.carousel-dot.active {
  background-color: var(--color-primary);
}

/* ===========================================
   POWERFUL STORY SECTION
   =========================================== */
.story-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px var(--container-padding);
  background-color: #1a2530;
  overflow: hidden;
}

.story-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../logosandassets/66c3eccd9a5ece7f17e61c88_Untitled_1.93.1.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.story-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.story-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.6;
  margin-bottom: 0;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6), 0 4px 30px rgba(0, 0, 0, 0.4);
}

.story-text strong {
  font-weight: 700;
}

/* ===========================================
   CLIENTS SECTION
   =========================================== */
.clients-section {
  padding-bottom: var(--spacing-xxl);
  background: linear-gradient(180deg, #fdfcfa 0%, #f8f5f0 100%);
  overflow: hidden;
  position: relative;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.clients-section > * {
  position: relative;
  z-index: 1;
}

/* Logo Slider */
.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background: transparent;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  height: 70px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 1;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
}

/* Keep old grid for fallback */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 40px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.client-logo-placeholder {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  padding: 10px;
}

/* ===========================================
   OUR SERVICES SECTION
   =========================================== */
/* Services section no longer needs separate header styles - uses section-header-wrapper */

/* Service Block */
.service-block {
  padding: var(--spacing-xxl) 0;
  position: relative;
  background: linear-gradient(180deg, #fdfcfa 0%, #faf8f4 100%);
  overflow: hidden;
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.service-block > * {
  position: relative;
  z-index: 1;
}

.service-block.alt-bg {
  background: linear-gradient(180deg, #f7f4ef 0%, #f2efe8 100%);
}

.service-block.alt-bg::before {
  opacity: 0.05;
}

.service-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-block.reverse .container {
  direction: rtl;
}

.service-block.reverse .container > * {
  direction: ltr;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

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

.service-image:hover img {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.service-tag {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-content {
  padding: 20px 0;
}

.service-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 50px;
}

.service-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  font-weight: 700;
}

.service-text {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--spacing-lg);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-dark);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.service-block .btn {
  padding: 16px 32px;
  font-size: 15px;
}

/* ===========================================
   SAFETY & STANDARDS SECTION
   =========================================== */
.standards-section {
  background: linear-gradient(180deg, #f8f6f2 0%, #f2efe8 100%);
  padding-bottom: var(--spacing-xxl);
}

.standards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.standard-block {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.standard-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: var(--color-primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.standard-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.standard-block:hover::before {
  transform: scaleY(1);
}

.standard-badge {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.standard-badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.standard-badge.insurance-badge {
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.standard-badge.wcb-badge {
  background-color: #1a1a1a;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 3px;
}

.standard-info {
  flex-grow: 1;
}

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

.standard-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.standard-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 700px;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */
.contact-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a3a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section .container {
  max-width: 1100px;
  padding: 0 var(--container-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  background: transparent;
  align-items: stretch;
}

/* Left Side - Contact Info */
.contact-info {
  background: transparent;
  padding: 20px 0;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info-text {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.contact-method-content {
  display: flex;
  flex-direction: column;
}

.contact-method-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.contact-method-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
}

.contact-method-value:hover {
  text-decoration: underline;
}

/* Contact Logo */
.contact-logo {
  margin-bottom: 30px;
}

.contact-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Contact Bottom Row */
.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.contact-badge {
  display: flex;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: var(--radius-md);
}

.contact-badge-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* Contact Legal */
.contact-legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-legal p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.6;
}

/* Right Side - Form */
.contact-form-wrapper {
  padding: 40px;
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Honeypot field - hidden from humans, visible to bots */
.ohnohoney {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

.contact-form {
  max-width: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: all 0.2s ease;
  color: var(--color-text-dark);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #aaa;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 50px;
  cursor: pointer;
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f9f9f9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a4d3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 45px;
}

.form-select:hover {
  border-color: var(--color-primary);
  background-color: #fff;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  background: linear-gradient(135deg, var(--color-primary) 0%, #153d2e 100%);
  color: var(--color-white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26, 77, 58, 0.3);
}

.form-submit svg {
  transition: transform 0.2s ease;
}

.form-submit:hover svg {
  transform: translateX(4px);
}

/* ===========================================
   FOOTER
   =========================================== */
/* Minimal Footer */
.footer-mini {
  background-color: var(--color-primary);
  padding: 20px 0;
  text-align: center;
}

.footer-mini p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Legacy footer styles (for other pages) */
.footer {
  background-color: var(--color-primary);
  padding: var(--spacing-xl) 0;
}

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

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-full {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.footer-copyright {
  margin-top: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  color: var(--color-white);
  font-size: 18px;
  transition: opacity 0.2s ease;
}

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

.footer-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.footer-badge {
  display: flex;
  justify-content: flex-end;
}

.footer-badge img {
  width: 100px;
  height: auto;
}

.buy-social-logo {
  width: 120px;
  height: auto;
  border-radius: 50%;
}

/* Buy Social Badge */
.buy-social-badge {
  width: 100px;
  height: 100px;
  border: 4px solid #F4A900;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
  color: white;
  text-align: center;
  padding: 8px;
}

.badge-inner {
  display: flex;
  align-items: center;
  gap: 2px;
}

.badge-text {
  font-size: 14px;
  font-weight: 700;
}

.badge-maple {
  font-size: 16px;
}

.badge-country {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 2px;
}

.badge-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #F4A900;
}

/* Standard Icon Placeholder */
.standard-icon-placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.standard-icon-placeholder.wcb-icon {
  background-color: #000;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Client Logo Fixes */
.client-logo {
  width: 150px;
  height: 100px;
  object-fit: contain;
  background: transparent;
}

/* ===========================================
   UTILITIES
   =========================================== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

/* ===========================================
   PLACEHOLDER IMAGES
   (Remove when real images are added)
   =========================================== */
.hero-bg {
  background-color: #1a2530;
  background-image: url('../logosandassets/66591020ae9f627643731446_Untitled_1.79.1.jpeg');
  background-size: cover;
  background-position: center;
}


/* Placeholder for missing images */
img[src^="images/"] {
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  min-height: 200px;
}

.issue-card-image[src^="images/"] {
  background: linear-gradient(135deg, #c5d5bc 0%, #8fa07a 100%);
}

.client-logo[src^="images/"] {
  background: #f5f5f5;
  min-height: 80px;
  border-radius: 8px;
}

.service-image img[src^="images/"] {
  background: linear-gradient(135deg, #1B4332 0%, #2d5a45 100%);
  min-height: 300px;
}

.standard-icon[src^="images/"] {
  background: #f0f0f0;
  border-radius: 50%;
}

.footer-badge img[src^="images/"] {
  background: transparent;
  min-height: 80px;
}

/* ===========================================
   SERVICE PAGE STYLES
   =========================================== */

/* Service Page Hero Banner */
.page-hero {
  background-color: var(--color-primary);
  padding: 140px var(--container-padding) 80px;
  text-align: center;
  margin-top: 73px; /* Account for fixed navbar */
  position: relative;
  overflow: hidden;
}

/* Page Hero with Background Image */
.page-hero.page-hero-image {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  padding: 160px var(--container-padding) 100px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 77, 58, 0.88) 0%, rgba(13, 46, 35, 0.92) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.page-hero-text {
  font-size: 18px;
  line-height: 1.8;
  font-size: 16px;
  color: var(--color-white);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Service Detail Blocks */
.service-detail-block {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e8e4df;
}

.service-detail-block:last-of-type {
  border-bottom: none;
}

/* Alternate styling for every other block */
.service-detail-block:nth-child(even) {
  background: #f9f7f4;
}

.service-detail-block .container {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

/* Title as header */
.service-detail-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.service-detail-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(26, 77, 58, 0.1) 100%);
  margin: 24px 0 32px;
}

/* Content row: text left, image right */
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: start;
}

.service-detail-content {
  padding: 0;
}

.service-detail-text {
  font-size: 16px;
  font-weight: 400;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  text-align: justify;
}

/* Bullet Points for Service Pages */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.service-bullets li {
  position: relative;
  padding-left: 0;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
}

.service-bullets li:last-child {
  margin-bottom: 0;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-detail-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.service-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-explore-btn:hover {
  background: #153d2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 58, 0.3);
}

.service-explore-btn .arrow {
  transition: transform 0.3s ease;
}

.service-explore-btn:hover .arrow {
  transform: translateX(4px);
}

/* Service Clean Layout */
.service-clean {
  background: linear-gradient(180deg, #f7f5f0 0%, #ebe7df 100%);
  padding: 90px 0;
  position: relative;
}

.service-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 77, 58, 0.15), transparent);
}

.service-clean-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(145deg, #ffffff 0%, #fdfcfa 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-clean-content {
  padding: 55px;
  background: linear-gradient(135deg, rgba(26, 77, 58, 0.02) 0%, transparent 100%);
}

.service-clean-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-primary);
  line-height: 1.25;
  position: relative;
}

.service-clean-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), #2d6b54);
}

.service-clean-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 18px;
}

.service-clean-text:last-of-type {
  margin-bottom: 32px;
}

.service-clean-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #153d2e 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 77, 58, 0.25);
}

.service-clean-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 58, 0.35);
}

.service-clean-image {
  overflow: hidden;
  position: relative;
}

.service-clean-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 77, 58, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.service-clean-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Alternate: when image comes first in HTML, it appears on left */
.service-clean-layout .service-clean-image:first-child + .service-clean-content {
  order: 2;
}

.service-clean-layout .service-clean-image:first-child {
  order: 1;
}

/* ===========================================
   ABOUT PAGE STYLES
   =========================================== */

/* About Hero - Split Layout */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 73px;
}

.about-hero-left {
  background-color: var(--color-primary);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
}

.about-hero-right {
  background-color: var(--color-sage-medium);
  padding: 80px 60px;
  display: flex;
  align-items: center;
}

.about-hero-text {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.7;
}

/* Staff Section */
.staff-section {
  background-color: var(--color-sage-medium);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.staff-section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.staff-section-text {
  font-size: 15px;
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.testimonials-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.testimonial-card {
  background-color: var(--color-off-white);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.testimonial-quote {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  background-color: var(--color-sage-light);
  padding: 15px;
  border-radius: var(--radius-sm);
  margin: -30px -30px -30px -30px;
  margin-top: 20px;
}

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

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

/* Team Leaders Section */
.team-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--color-white);
}

.team-section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.team-section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
}

.team-section-text {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

.team-card-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.team-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-text-dark);
  margin-bottom: 5px;
}

.team-card-role {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.team-social a:hover {
  color: var(--color-primary-dark);
}

/* Mission Section */
.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.mission-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.mission-title .highlight {
  color: var(--color-primary);
}

.mission-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

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

.mission-image {
  background-size: cover;
  background-position: center;
}

/* CEO Feature Section */
.ceo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

.ceo-image {
  background-size: cover;
  background-position: center top;
}

.ceo-content {
  background-color: var(--color-primary);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
}

.ceo-name {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ceo-role {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ceo-bio {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ceo-email {
  font-size: 14px;
}

.ceo-email a {
  color: var(--color-white);
  text-decoration: underline;
}

/* Contact Page Hero */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.contact-hero-image {
  position: relative;
  overflow: hidden;
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-hero-content {
  background: linear-gradient(135deg, #f5f3ef 0%, #ebe8e2 100%);
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-name {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1;
  color: #1a1a1a;
}

.contact-hero-role {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.contact-hero-bio {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
  max-width: 550px;
}

.contact-hero-details {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 32px;
}

.contact-hero-item {
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
}

.contact-hero-item:last-child {
  margin-bottom: 0;
}

.contact-hero-label {
  color: #666;
  margin-right: 8px;
}

.contact-hero-item a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-weight: 500;
}

.contact-hero-item a:hover {
  opacity: 0.8;
}

/* About Page - Clean Redesign */
.about-section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 50px;
}

/* Testimonials - Complete Design */
.about-testimonials {
  padding: 110px 0;
  background: linear-gradient(135deg, #1a4d3a 0%, #143d2e 50%, #0d2820 100%);
  position: relative;
  overflow: hidden;
}

.about-testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-testimonials::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.about-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.about-testimonials-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.about-testimonials-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.about-testimonials-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
}

.about-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-testimonial {
  background: linear-gradient(145deg, #fdfcfa 0%, #f5f2ed 100%);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(26, 77, 58, 0.08);
}

.about-testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  border-color: rgba(26, 77, 58, 0.15);
}

.about-testimonial-featured {
  transform: scale(1.02);
  background: linear-gradient(145deg, #fff 0%, #f9f7f3 100%);
}

.about-testimonial-featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.about-testimonial-quote-icon {
  width: 46px;
  height: 46px;
  background: rgba(26, 77, 58, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.about-testimonial-quote-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.about-testimonial-quote {
  font-size: 17px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 28px;
  flex-grow: 1;
}

.about-testimonial-divider {
  height: 1px;
  background: rgba(26, 77, 58, 0.12);
  margin-bottom: 22px;
}

.about-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-testimonial-avatar {
  width: 46px;
  height: 46px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.about-testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-testimonial-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.about-testimonial-role {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 500;
}

/* Leadership Section - Clean */
.about-leadership {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f9f7f4 100%);
}

.about-leadership .about-section-title {
  margin-bottom: 60px;
}

.about-leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-leader-card {
  text-align: center;
}

.about-leader-image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 30px;
  display: block;
  border: 6px solid var(--color-primary);
  box-shadow: 0 12px 35px rgba(26, 77, 58, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-leader-card:hover .about-leader-image {
  transform: scale(1.05);
  box-shadow: 0 18px 45px rgba(26, 77, 58, 0.25);
}

.about-leader-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.about-leader-role {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
}

/* About Tagline */
.about-tagline {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  margin-top: 12px;
  font-style: italic;
}

.about-tagline-highlight {
  font-weight: 700;
  color: var(--color-primary);
  font-style: italic;
}

/* About Certifications */
.about-certifications {
  padding: 100px 0;
  background: #fff;
}

.about-certs-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.about-cert-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.about-cert-shield {
  width: 100px;
  height: 100px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-cert-shield svg {
  width: 55px;
  height: 55px;
  color: #fff;
}

.about-cert-wcb {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #153d2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.about-cert-label {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  max-width: 180px;
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */

/* Hamburger Menu Button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}


/* ===========================================
   TABLET/MOBILE BREAKPOINT (< 1024px)
   =========================================== */
@media (max-width: 1024px) {
  
  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
  }
  
  * {
    max-width: 100%;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Show hamburger menu */
  .hamburger {
    display: flex !important;
  }
  
  /* Mobile navigation */
  .nav-menu {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    z-index: 1000;
    padding: 100px 20px 40px;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    display: flex !important;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
    justify-content: center;
  }
  
  /* Hide dropdown on mobile by default */
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    background-color: var(--color-off-white);
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    transition: all 0.3s ease;
  }

  /* Show dropdown when parent has .dropdown-open class */
  .nav-item.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    padding: 10px 0;
  }

  .nav-item.dropdown-open .arrow {
    transform: rotate(180deg);
  }

  .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .dropdown-link {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .nav-menu .btn {
    margin-top: 20px;
    width: 80%;
    text-align: center;
  }
  
  /* Navbar container */
  .navbar .container {
    justify-content: space-between;
    padding: 0 20px;
  }
  
  /* Logo sizing */
  .logo-full {
    height: 32px;
  }
  
  /* Container padding for mobile */
  .container {
    padding: 0 20px;
  }
  
  /* Hero Section */
.hero {
    padding: 140px 24px 100px;
    min-height: 100vh;
  }
  
  /* Disable parallax on mobile for better performance */
  .hero-bg {
    background-attachment: scroll;
    top: 0;
    height: 100%;
  }

  /* Story Section Mobile */
  .story-section {
    padding: 120px 24px;
  }

  .story-bg {
    background-attachment: scroll;
  }

  .story-text {
    font-size: 20px;
    line-height: 1.5;
  }

  .story-content {
    gap: 24px;
  }

  .story-section .btn {
    padding: 14px 32px;
    font-size: 14px;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 24px;
    letter-spacing: -1px;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 35px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-bottom: 0;
  }

  .hero-buttons .btn,
  .hero-buttons .btn-secondary-light {
    width: 100%;
    max-width: 280px;
    padding: 15px 32px;
    font-size: 15px;
  }

  .hero-stats {
    display: none;
  }
  
  /* Section Titles - BIGGER on mobile */
  .section-title {
    font-size: 28px;
    text-align: center;
  }
  
  .section-text {
    font-size: 16px;
    text-align: center;
  }
  
  .page-hero {
    padding: 120px var(--container-padding) 80px;
  }

  .page-hero.page-hero-image {
    padding: 140px var(--container-padding) 100px;
    min-height: 450px;
  }

  .page-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .page-hero-text {
    font-size: 17px;
    line-height: 1.75;
  }

  /* Section Header Wrapper - mobile */
  .section-header-wrapper {
    padding: var(--spacing-lg) 0;
    margin-bottom: var(--spacing-lg);
  }
  
  /* Styled Headers - mobile */
  .styled-header.two-column {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .styled-header-right {
    padding-top: 0;
  }
  
  .styled-header-title {
    font-size: 28px;
  }
  
  .styled-header-subtitle {
    font-size: 15px;
  }
  
  .section-label {
    padding-left: 0;
    font-size: 12px;
  }
  
  .section-label::before {
    display: none;
  }
  
  /* Issues grid / Carousel - 1 column */
  .issues-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .carousel-slide {
    min-width: 100%;
    padding: 10px 20px;
  }

  .carousel-container {
    padding: 0;
  }

.issues-masonry {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .issue-card {
    max-width: 100%;
  }

  .issue-card-image {
    height: 220px;
  }

  .issue-card-content {
    padding: 24px;
    text-align: center;
  }

  .issue-card-title {
    font-size: 20px;
    text-align: center;
  }
  
  .issue-card-text {
    font-size: 15px;
    text-align: center;
  }
  
  .card-link {
    justify-content: center;
  }
  
  /* Standards list - mobile */
  .standard-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
    text-align: center;
  }
  
  .standard-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  
  .standard-badge.wcb-badge {
    font-size: 26px;
  }
  
  .standard-title {
    font-size: 22px;
  }
  
  .standard-text {
    font-size: 14px;
  }
  
  /* Services grid - 1 column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-card {
    text-align: center;
  }
  
  .service-title {
    font-size: 24px;
    text-align: center;
  }
  
  .service-text {
    font-size: 16px;
    text-align: center;
  }
  
  /* Service Blocks on Homepage - STACK PROPERLY */
  .service-block {
    padding: 50px 0;
  }
  
  .service-block .container {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
  }
  
  .service-block.reverse .container {
    flex-direction: column !important;
    direction: ltr;
  }
  
  .service-image {
    width: 100%;
  }
  
  .service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }
  
  .service-content {
    text-align: left;
    padding: 0;
  }
  
  .service-label {
    padding-left: 40px;
  }
  
  .service-label::before {
    width: 30px;
  }
  
  .service-title {
    font-size: 28px;
  }
  
  .service-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .service-content .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* Service Detail Blocks on Service Pages */
  .service-detail-block {
    padding: 50px 0;
  }

  .service-detail-title {
    font-size: 26px;
  }

  .service-detail-divider {
    margin: 20px 0 24px;
  }

  .service-detail-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .service-detail-image {
    width: 100%;
    order: -1;
  }

  .service-detail-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .service-detail-content {
    width: 100%;
  }

  .service-detail-text {
    font-size: 15px;
  }

  .service-explore-btn {
    width: 100%;
    justify-content: center;
  }
  
  .service-bullets {
    text-align: left;
    max-width: 400px;
    margin: 20px auto;
  }
  
  .service-bullets li {
    font-size: 15px;
  }

  /* Service Clean Layout - Mobile */
  .service-clean {
    padding: 50px 0;
  }

  .service-clean-layout {
    display: flex;
    flex-direction: column;
  }

  .service-clean-image {
    order: -1;
    height: 250px;
  }

  .service-clean-image img {
    height: 250px;
  }

  .service-clean-content {
    padding: 35px 25px;
  }

  .service-clean-title {
    font-size: 26px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .service-clean-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .service-clean-text:last-of-type {
    margin-bottom: 24px;
  }

  .service-clean-btn {
    width: 100%;
    text-align: center;
    padding: 14px 28px;
  }
  
  /* Logo Slider on mobile - use grid instead */
  .logo-slider {
    overflow: visible;
    padding: 30px 20px;
  }
  
  .logo-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 20px;
    animation: none;
    width: 100%;
    justify-items: center;
    align-items: center;
  }
  
  /* Hide duplicate logos on mobile (15 unique logos, hide 16+) */
  .logo-track .client-logo:nth-child(n+16) {
    display: none;
  }

  .client-logo {
    height: auto;
    width: 100%;
    max-width: 90px;
    max-height: 60px;
  }
  
  /* Clients grid fallback - 2 columns */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Team grid - 1 column */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .team-card {
    text-align: center;
  }
  
  .team-card-image {
    max-width: 300px;
    margin: 0 auto 20px;
  }
  
  /* Testimonials - 1 column */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonials-title {
    font-size: 28px;
  }
  
  /* About hero */
  .about-hero {
    grid-template-columns: 1fr;
  }
  
  .about-hero-left,
  .about-hero-right {
    padding: 50px 20px;
    text-align: center;
  }
  
  .about-hero-title {
    font-size: 36px;
  }
  
  .about-hero-text {
    font-size: 16px;
  }
  
  /* Staff section */
  .staff-section-title {
    font-size: 28px;
  }
  
  .staff-section-text {
    font-size: 16px;
  }

  /* About Page Clean - Mobile */
  .about-testimonials {
    padding: 70px 0;
  }

  .about-testimonials-header {
    margin-bottom: 40px;
  }

  .about-testimonials-title {
    font-size: 32px;
  }

  .about-testimonials-subtitle {
    font-size: 16px;
  }

  .about-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .about-testimonial {
    padding: 32px 26px;
  }

  .about-testimonial-featured {
    transform: none;
  }

  .about-testimonial-featured:hover {
    transform: translateY(-8px);
  }

  .about-testimonial-quote-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
  }

  .about-testimonial-quote {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .about-testimonial-avatar {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .about-testimonial-name {
    font-size: 16px;
  }

  .about-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .about-leadership {
    padding: 60px 0;
  }

  .about-leadership .about-section-title {
    margin-bottom: 40px;
  }

  .about-leaders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .about-leader-image {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
  }

  .about-leader-name {
    font-size: 22px;
  }

  .about-leader-role {
    font-size: 13px;
  }

  .about-certifications {
    padding: 60px 0;
  }

  .about-certs-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 20px;
  }

  .about-cert-logo,
  .about-cert-shield,
  .about-cert-wcb {
    width: 80px;
    height: 80px;
  }

  .about-cert-shield svg {
    width: 45px;
    height: 45px;
  }

  .about-cert-wcb {
    font-size: 22px;
  }

  .about-cert-label {
    font-size: 15px;
  }
  
  /* Mission Section */
  .mission-section {
    grid-template-columns: 1fr;
  }
  
  .mission-content {
    padding: 50px 20px;
    text-align: center;
  }
  
  .mission-title {
    font-size: 28px;
  }
  
  .mission-text {
    font-size: 16px;
  }
  
  .mission-image {
    min-height: 300px;
  }
  
  /* CEO Section */
  .ceo-section {
    grid-template-columns: 1fr;
  }

  .ceo-image {
    min-height: 350px;
  }

  .ceo-content {
    padding: 50px 20px;
    text-align: center;
  }

  .ceo-name {
    font-size: 32px;
  }

  .ceo-bio {
    font-size: 16px;
  }

  /* Contact Hero Mobile */
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .contact-hero-image {
    height: 350px;
  }

  .contact-hero-content {
    padding: 50px 30px;
    text-align: center;
  }

  .contact-hero-name {
    font-size: 42px;
  }

  .contact-hero-role {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .contact-hero-bio {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .contact-hero-details {
    text-align: center;
    padding-top: 24px;
  }

  .contact-hero-item {
    font-size: 15px;
  }
  
  /* CTA Section */
  .cta-title {
    font-size: 28px;
  }
  
  .cta-text {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  /* Contact Form */
  .contact-title {
    font-size: 32px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
/* Contact section - mobile */
  .contact-section {
    padding: 50px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .contact-info-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact-info-text {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-info-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }

  .contact-methods {
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .contact-method:last-child {
    border-bottom: none;
  }

  .contact-method-icon {
    margin-bottom: 8px;
  }

  .contact-method-content {
    text-align: center;
  }

  .contact-method-label {
    display: block;
    margin-bottom: 4px;
  }

  .contact-social {
    margin-bottom: 20px;
  }

  .contact-social-links {
    justify-content: center;
  }

  .contact-badge {
    justify-content: center;
  }

  .contact-legal {
    text-align: center;
    margin-top: 20px;
  }

  .contact-legal p {
    font-size: 11px;
  }
  
  .contact-form-wrapper {
    padding: 30px 25px;
    border-radius: 12px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .contact-badge-img {
    height: 55px;
    width: auto;
  }
  
  .contact-badge {
    padding: 12px 15px;
    gap: 15px;
  }
  
  /* Footer */
  .footer {
    padding: 50px 20px;
  }
  
  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .footer-left,
  .footer-center {
    text-align: center;
  }
  
  .footer-logo-full {
    margin: 0 auto 16px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-description {
    font-size: 15px;
  }
}


/* ===========================================
   SMALLER MOBILE BREAKPOINT (< 600px)
   =========================================== */
@media (max-width: 600px) {
  
  /* Logo grid for small screens */
  .logo-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 15px;
  }
  
  .client-logo {
    max-width: 80px;
    max-height: 55px;
  }

  /* Even smaller font for tiny screens */
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
  }
  
  .page-hero.page-hero-image {
    min-height: 420px;
    padding: 130px var(--container-padding) 80px;
  }

  .page-hero-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .page-hero-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .service-detail-title {
    font-size: 22px;
  }

  .about-hero-title {
    font-size: 30px;
  }
  
  .ceo-name {
    font-size: 26px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  .contact-title {
    font-size: 26px;
  }
  
  /* Smaller image heights */
  .service-detail-image img {
    height: 200px;
  }
  
  .ceo-image {
    min-height: 280px;
  }
  
  .mission-image {
    min-height: 250px;
  }
}

/* Extra small screens */
@media (max-width: 450px) {
  .logo-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 12px;
  }
  
  .client-logo {
    max-width: 70px;
    max-height: 50px;
  }
  
  .logo-slider {
    padding: 25px 15px;
  }
}

