﻿/* ========================================
   LEOZZY WEBSITE STYLES
   Complete CSS Stylesheet
   ======================================== */

/* ----------------------------------------
   CSS VARIABLES
   ---------------------------------------- */
:root {
  /* Primary Colors */
  --primary: #00521B;
  --primary-dark: #003d14;
  --primary-light: #006b24;
  
  /* Secondary Colors */
  --secondary: #77A105;
  --secondary-dark: #5f8004;
  --secondary-light: #8fc206;
  
  /* Accent Colors */
  --gold: #c9a227;
  --gold-dark: #a68520;
  --gold-light: #d4b84a;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #1a1a1a;
  
  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --text-muted: #adb5bd;
  
  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

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

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

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

.bg-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

/* ----------------------------------------
   HEADER
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

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

.logo {
  display: flex;
  align-items: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  height: 40px;
  width: auto;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

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

.dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: background-color var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* Search Toggle */
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  transition: background-color var(--transition-fast);
}

.search-toggle:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
}

.search-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-2xl);
  transition: color var(--transition-fast);
}

.search-close:hover {
  color: var(--gold);
}

.search-form {
  display: flex;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: var(--space) var(--space-md);
  font-size: var(--text-lg);
  border: none;
  outline: none;
}

.search-submit {
  padding: var(--space) var(--space-lg);
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.search-submit:hover {
  background-color: var(--primary-dark);
}

/* ----------------------------------------
   HERO
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-fullwidth {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 120px 0 var(--space-2xl);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 82, 27, 0.92) 0%, rgba(0, 82, 27, 0.75) 50%, rgba(0, 82, 27, 0.4) 100%);
  z-index: 2;
}

.hero-content-box {
  position: relative;
  z-index: 3;
  max-width: 700px;
  color: var(--white);
  padding: var(--space-xl) var(--space-2xl);
  background-color: rgba(0, 82, 27, 0.85);
  border-radius: var(--radius-md);
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: var(--text-2xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

.hero-buttons {
  display: flex;
  gap: var(--space);
  flex-wrap: wrap;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space) var(--space-lg);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: center;
}

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

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

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

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

.btn-gold {
  background: linear-gradient(135deg, #8F5908 0%, #FFFDC4 50%, #8F5908 100%);
  color: var(--black);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #7a4a06 0%, #e6e4b0 50%, #7a4a06 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: var(--space) var(--space-xl);
  font-size: var(--text-lg);
}

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

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

/* ----------------------------------------
   SECTION HEADER
   ---------------------------------------- */
.section-header {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space);
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: var(--space);
}

.bg-primary .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.bg-primary .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* Stagger Children Animation */


/* ----------------------------------------
   SERVICES
   ---------------------------------------- */
.services-section {
  padding: var(--space-2xl) 0;
}

.services-grid {
  display: grid;
  gap: var(--space-lg);
}

.services-grid.featured {
  grid-template-columns: repeat(2, 1fr);
}

.services-grid.secondary {
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-lg);
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}

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

.service-card.featured {
  border-top: 4px solid var(--primary);
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  color: var(--white);
}

.service-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space);
  color: var(--primary);
  text-align: center;
}

.service-card p {
  color: var(--gray);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
  text-align: center;
}

.service-link {
  display: inline-block;
  padding: var(--space) var(--space-lg);
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--text-sm);
  transition: all var(--transition);
}

.service-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Additional Services Carousel */
.additional-services {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.additional-services h4 {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space);
  max-width: 1200px;
  margin: 0 auto;
}

.service-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space) var(--space-lg);
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all var(--transition);
  flex: 0 0 calc(20% - var(--space));
  min-width: 160px;
  max-width: none;
}

.service-item span {
  line-height: 1.4;
}

.service-item:hover {
  border-color: var(--primary);
  background-color: rgba(0, 82, 27, 0.05);
}

.service-item svg {
  color: var(--secondary);
}

/* Responsive: 3 per row on tablet, 2 per row on mobile */
@media (max-width: 992px) {
  .service-item {
    flex: 0 0 calc(33.333% - var(--space));
    min-width: 140px;
  }
}

@media (max-width: 576px) {
  .service-item {
    flex: 0 0 calc(50% - var(--space));
    min-width: 120px;
    padding: var(--space-sm) var(--space);
  }
}

/* ----------------------------------------
   TRUST BAR
   ---------------------------------------- */
.trust-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: var(--space-lg) 0;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--space-lg);
}

.trust-cell {
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  position: relative;
  white-space: nowrap;
}

.trust-top {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.trust-bottom {
  font-size: var(--text-base);
  color: var(--white);
  font-weight: 500;
}

.trust-vline {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
}

.trust-cell:last-child .trust-vline {
  display: none;
}

/* ----------------------------------------
   CONTENT SECTIONS
   ---------------------------------------- */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.section-content {
  max-width: 600px;
}

.section-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.section-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.section-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.section-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

/* Who We Are */
.who-we-are {
  background-color: var(--bg-light);
}



/* ----------------------------------------
   FEATURES
   ---------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: var(--space-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-md);
  color: var(--white);
  font-size: var(--text-2xl);
}

.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

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

/* ----------------------------------------
   INDUSTRIES
   ---------------------------------------- */
.industries-section {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

/* Industries Carousel */
.industries-carousel {
  overflow: hidden;
  width: 100%;
  padding: var(--space-md) 0;
}

.carousel-track {
  display: flex;
  gap: var(--space-md);
  animation: scroll 30s linear infinite;
  width: max-content;
}

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

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

.industries-carousel .industry-card {
  flex: 0 0 160px;
  min-width: 160px;
}

.industry-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

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

.industry-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 82, 27, 0.1);
  border-radius: var(--radius-md);
  margin: 0 auto var(--space);
  color: var(--primary);
  font-size: var(--text-xl);
  transition: all var(--transition);
}

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

.industry-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
}

/* ----------------------------------------
   PROCESS
   ---------------------------------------- */
.process-section {
  padding: var(--space-2xl) 0;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 200px;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8F5908 0%, #FFFDC4 50%, #8F5908 100%);
  border: 3px solid var(--primary);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-md);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.step-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ----------------------------------------
   RESOURCES
   ---------------------------------------- */
.resources-section {
  padding: var(--space-2xl) 0;
  background-color: var(--bg-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.resource-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.resource-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.resource-image.placeholder {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-3xl);
}

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

.resource-category {
  display: inline-block;
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space);
}

.resource-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  line-height: var(--leading-tight);
}

.resource-content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: gap var(--transition-fast);
}

.resource-link:hover {
  gap: var(--space);
}

.section-cta {
  margin-top: var(--space-xl);
}

/* ----------------------------------------
   CTA SECTIONS
   ---------------------------------------- */
.cta-section-alt {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.cta-section-alt::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--space);
  justify-content: center;
  flex-wrap: wrap;
}

.final-cta {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

/* ----------------------------------------
   ABOUT PAGE STYLES
   ---------------------------------------- */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(80px + var(--space-2xl)) 0 var(--space-2xl);
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 82, 27, 0.9) 0%, rgba(0, 82, 27, 0.7) 100%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.about-hero-content h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
}

.about-hero-content p {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

/* Our Story Section */
.our-story {
  padding: var(--space-3xl) 0;
  background-color: var(--bg-white);
}

.our-story-header {
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.our-story-header .section-label {
  color: var(--primary);
}

.our-story-header h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--leading-tight);
}

.our-story-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-3xl);
  align-items: end;
}

.story-text p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.story-text p.lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  font-weight: 500;
}

.story-text strong {
  color: var(--primary);
}

/* Stat Boxes */
.story-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stat-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.stat-box-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.stat-box-label {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Label */
.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space);
}

.section-label.light {
  color: var(--gold);
}

/* Our Difference Section */
.our-difference {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.difference-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.difference-content h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
}

.difference-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* Mission & Vision Section */
.mission-vision-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.mv-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 82, 27, 0.85);
  z-index: 2;
}

.mission-vision-section .container {
  position: relative;
  z-index: 3;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.mv-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.mv-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  color: var(--white);
}

.mv-card h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.mv-tagline {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.mv-card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Values Section */
.values-section {
  padding: var(--space-3xl) 0;
  background-color: var(--bg-light);
}

.values-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.value-block {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.value-block.large {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-block-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--white);
}

.value-block h4 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.value-block p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

/* Why Choose Section */
.why-choose-section {
  padding: var(--space-3xl) 0;
  background-color: var(--bg-white);
}

.why-choose-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.why-choose-header h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-primary);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}

.why-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.why-content h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.why-content p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* About CTA Section */
.about-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.about-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.about-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
  line-height: var(--leading-relaxed);
}

/* Animation Classes */
.reveal {
  opacity: 1;
}

.reveal-left {
  opacity: 1;
}

.reveal-right {
  opacity: 1;
}

.reveal-scale {
  opacity: 1;
}

.stagger-children > * {
  opacity: 1;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding-top: var(--space-2xl);
}

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

/* Footer Brand */
.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

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

.footer-tagline {
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: all var(--transition-fast);
}

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

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-heading {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

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

/* Footer Contact */
.footer-contact {
  color: var(--text-muted);
}

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

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-list i,
.contact-list svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Footer Newsletter */
.footer-newsletter {
  max-width: 300px;
}

.footer-newsletter p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space);
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
}

.newsletter-input {
  flex: 1;
  padding: var(--space) var(--space);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--secondary);
}

.newsletter-submit {
  padding: var(--space) var(--space);
  background-color: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: background-color var(--transition-fast);
}

.newsletter-submit:hover {
  background-color: var(--secondary-light);
}

/* Footer Bottom */
.footer-bottom {
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space);
}

.footer-legal {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.legal-links {
  display: flex;
  gap: var(--space-md);
}

.legal-links a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.legal-links a:hover {
  color: var(--white);
}

/* ----------------------------------------
   RESPONSIVE MEDIA QUERIES
   ---------------------------------------- */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
    --space-3xl: 4rem;
  }

  .section-grid {
    gap: var(--space-xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

  .trust-cell:nth-child(2) .trust-vline {
    display: none;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: var(--space-lg);
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(50% - var(--space-lg));
    max-width: none;
  }
}

/* Tablets */
@media (max-width: 768px) {
  :root {
    --container-padding: 1rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --space-3xl: 3rem;
  }

  /* Header Mobile */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

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

  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--bg-light);
    margin-top: var(--space-sm);
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
  }

  .hero-content-box {
    text-align: center;
    padding: var(--space-lg) 0;
  }

  .hero-buttons {
    justify-content: center;
  }

  /* Section Grid Mobile */
  .section-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .section-image {
    order: -1;
  }

  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Features Grid Mobile */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Industries Grid Mobile */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process Steps Mobile */
  .process-step {
    flex: 0 0 100%;
  }

  /* Resources Grid Mobile */
  .resources-grid {
    grid-template-columns: 1fr;
  }

  /* About Page Mobile */
  .about-hero-content h1 {
    font-size: var(--text-3xl);
  }

  .our-story-grid {
    grid-template-columns: 1fr;
  }

  .story-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-box {
    flex: 1;
    min-width: 150px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .values-masonry {
    grid-template-columns: 1fr;
  }

  .value-block.large {
    grid-row: auto;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Mobile */
  .cta-content h2 {
    font-size: var(--text-3xl);
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .contact-list li {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  :root {
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
    --text-3xl: 1.25rem;
    --space-3xl: 2.5rem;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-vline {
    display: none;
  }

  .trust-cell {
    border-bottom: 1px solid var(--light-gray);
  }

  .trust-cell:last-child {
    border-bottom: none;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .carousel-container {
    animation-duration: 20s;
  }

  .carousel-card {
    flex: 0 0 240px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .search-form {
    flex-direction: column;
  }

  .search-submit {
    width: 100%;
  }

  /* About Page Small Mobile */
  .about-hero {
    min-height: 50vh;
  }

  .about-hero-content h1 {
    font-size: var(--text-2xl);
  }

  .about-hero-content p {
    font-size: var(--text-base);
  }

  .our-story-header h2,
  .difference-content h2,
  .why-choose-header h2,
  .about-cta-content h2 {
    font-size: var(--text-2xl);
  }

  .story-stats {
    flex-direction: column;
  }

  .mv-card {
    padding: var(--space-lg);
  }

  .why-item {
    flex-direction: column;
    text-align: center;
  }
}

/* ----------------------------------------
   UTILITY CLASSES
   ---------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.text-secondary {
  color: var(--secondary);
}

.text-gold {
  color: var(--gold);
}

.text-white {
  color: var(--white);
}

.text-muted {
  color: var(--text-muted);
}

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

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

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Smooth scroll padding for fixed header */
html {
  scroll-padding-top: 100px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .hero-background,
  .search-overlay,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    text-decoration: underline;
  }

  .section-padding {
    padding: 2rem 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .carousel-container {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 0 0 1px currentColor;
    --shadow-md: 0 0 0 2px currentColor;
    --shadow-lg: 0 0 0 3px currentColor;
  }

  .btn-primary,
  .btn-secondary,
  .btn-gold {
    border: 2px solid currentColor;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  /* Uncomment to enable dark mode
  :root {
    --bg-white: #1a1a1a;
    --bg-light: #2d2d2d;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
  }
  */
}

/* ========================================
   SERVICE PAGES - TAX DISPUTE RESOLUTION
   ======================================== */

/* Service Hero Section */
.service-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 27, 0.95) 0%, rgba(0, 61, 20, 0.9) 100%);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) 0;
  color: var(--white);
}

.service-hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space);
  background-color: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.service-hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.service-hero-subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.service-hero-buttons {
  display: flex;
  gap: var(--space);
  flex-wrap: wrap;
}

/* Service Intro Section */
.service-intro {
  background-color: var(--bg-white);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.split-content .section-label {
  display: block;
  color: var(--primary);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}

.split-content .lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.split-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.split-visual {
  position: relative;
}

.consultation-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.experience-stat {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-xs);
}

/* When to Speak Section */
.when-to-speak {
  background-color: var(--bg-light);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space);
  padding: var(--space-lg);
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.checklist-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  flex-shrink: 0;
}

.checklist-item p {
  color: var(--text-primary);
  font-weight: 500;
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Service Detail Grid */
.service-detail-grid {
  background-color: var(--bg-white);
}

.two-column-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.service-detail-card {
  background-color: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}

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

.service-detail-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.service-detail-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.service-detail-card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Approach Section */
.approach-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-tag.light {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--gold);
}

.section-title.light {
  color: var(--white);
}

.approach-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8F5908 0%, #FFFDC4 50%, #8F5908 100%);
  color: var(--primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
}

.process-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.process-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-sm);
}

/* Why Choose Section */
.why-choose-section {
  background-color: var(--bg-light);
}

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

.why-choose-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.why-choose-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.why-choose-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.why-choose-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: rgba(0, 82, 27, 0.05);
}

.faq-icon {
  color: var(--secondary);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.faq-answer p {
  margin: 0;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-3xl) 0;
}

.final-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.final-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

/* ========================================
   TAX ADMINISTRATION PAGE STYLES
   ======================================== */

/* Admin Hero Section */
.admin-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.admin-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.admin-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 27, 0.95) 0%, rgba(0, 61, 20, 0.9) 100%);
  z-index: 1;
}

.admin-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) 0;
  color: var(--white);
}

.admin-hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space);
  background-color: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.admin-hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.admin-hero-subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.admin-hero-buttons {
  display: flex;
  gap: var(--space);
  flex-wrap: wrap;
}

/* Admin Intro Section */
.admin-intro {
  background-color: var(--bg-white);
}

.intro-header {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.intro-body .lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto var(--space-xl);
}

.intro-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.intro-column p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Admin Services Grid */
.admin-services {
  background-color: var(--bg-light);
}

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

.admin-service-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid var(--primary);
}

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

.admin-service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.admin-service-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.admin-service-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  background-color: var(--bg-white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.benefits-content .lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: var(--space);
  font-size: var(--text-lg);
  color: var(--text-primary);
  font-weight: 500;
}

.benefit-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  flex-shrink: 0;
}

.benefits-visual {
  position: relative;
}

.benefits-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

/* Admin Approach Section */
.admin-approach {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.admin-approach .approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.admin-approach .approach-text p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* Admin Process Section */
.admin-process {
  background-color: var(--bg-light);
}

.process-vertical {
  max-width: 800px;
  margin: 0 auto;
}

.process-step-vertical {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--light-gray);
}

.process-step-vertical:last-child {
  border-bottom: none;
}

.process-step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8F5908 0%, #FFFDC4 50%, #8F5908 100%);
  color: var(--primary);
  font-size: var(--text-xl);
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.process-step-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.process-step-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Why Admin Section */
.why-admin-section {
  background-color: var(--bg-white);
}

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

.why-admin-item {
  background-color: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.why-admin-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-admin-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.why-admin-item h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.why-admin-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Admin FAQ Section */
.admin-faq {
  background-color: var(--bg-light);
}

/* Admin CTA Section */
.admin-cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
}

.admin-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.admin-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 27, 0.95) 0%, rgba(0, 61, 20, 0.9) 100%);
  z-index: 1;
}

.admin-cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.admin-cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.admin-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* ========================================
   BUSINESS ADVISORY PAGE STYLES
   ======================================== */

/* Advisory Hero Section */
.advisory-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.advisory-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.advisory-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 27, 0.95) 0%, rgba(0, 61, 20, 0.9) 100%);
  z-index: 1;
}

.advisory-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) 0;
  color: var(--white);
}

.advisory-hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space);
  background-color: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.advisory-hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.advisory-hero-subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.advisory-hero-buttons {
  display: flex;
  gap: var(--space);
  flex-wrap: wrap;
}

/* Advisory Intro Section */
.advisory-intro {
  background-color: var(--bg-white);
}

.advisory-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.advisory-split-visual {
  position: relative;
}

.advisory-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.advisory-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.advisory-stat {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.advisory-stat .stat-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.advisory-stat .stat-text {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-xs);
  line-height: 1.3;
}

.advisory-split-content .section-label {
  display: block;
  color: var(--primary);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}

.advisory-split-content .lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.advisory-split-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* Advisory Services Grid */
.advisory-services {
  background-color: var(--bg-light);
}

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

.advisory-service-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid var(--primary);
}

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

.advisory-service-header {
  margin-bottom: var(--space-md);
}

.advisory-service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  color: var(--white);
  margin-bottom: var(--space-md);
}

.advisory-service-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
}

.advisory-service-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Decisions Section */
.decisions-section {
  background-color: var(--bg-white);
}

.decisions-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.decisions-content .lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.decisions-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.decisions-list li {
  display: flex;
  align-items: center;
  gap: var(--space);
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 500;
}

.decision-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  flex-shrink: 0;
}

.decisions-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.decisions-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* B-BBEE Section */
.bbbee-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.bbbee-content {
  max-width: 900px;
  margin: 0 auto;
}

.bbbee-header {
  margin-bottom: var(--space-2xl);
}

.bbbee-intro {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  max-width: 700px;
  margin: var(--space-lg) auto 0;
}

.bbbee-services {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.bbbee-label {
  display: block;
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  text-align: center;
}

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

.bbbee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  font-weight: 500;
}

.bbbee-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* Advisory Approach Section */
.advisory-approach {
  background-color: var(--bg-white);
}

.approach-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.approach-header {
  margin-bottom: var(--space-2xl);
}

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

.approach-card {
  background-color: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
}

.approach-card-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8F5908 0%, #FFFDC4 50%, #8F5908 100%);
  color: var(--primary);
  font-size: var(--text-xl);
  font-weight: 700;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-lg);
}

.approach-card p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Why Advisory Section */
.why-advisory-section {
  background-color: var(--bg-light);
}

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

.why-advisory-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.why-advisory-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.why-advisory-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.why-advisory-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Advisory FAQ Section */
.advisory-faq {
  background-color: var(--bg-white);
}

/* Advisory CTA Section */
.advisory-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-3xl) 0;
}

.advisory-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.advisory-cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.advisory-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.advisory-cta-content .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   ACCOUNTING & BOOKKEEPING PAGE STYLES
   ======================================== */

/* Accounting Hero Section */
.accounting-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.accounting-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.accounting-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 27, 0.95) 0%, rgba(0, 61, 20, 0.9) 100%);
  z-index: 1;
}

.accounting-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) 0;
  color: var(--white);
}

.accounting-hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space);
  background-color: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.accounting-hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.accounting-hero-subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.accounting-hero-buttons {
  display: flex;
  gap: var(--space);
  flex-wrap: wrap;
}

/* Accounting Intro Section */
.accounting-intro {
  background-color: var(--bg-white);
}

.accounting-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.accounting-intro-content .section-label {
  display: block;
  color: var(--primary);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}

.accounting-intro-content .lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.accounting-intro-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.accounting-intro-visual {
  position: relative;
}

.accounting-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.accounting-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.accounting-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.accounting-badge .badge-number {
  display: block;
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.accounting-badge .badge-text {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--space-xs);
  line-height: 1.3;
}

/* Accounting Services Grid */
.accounting-services {
  background-color: var(--bg-light);
}

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

.accounting-service-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid var(--primary);
}

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

.accounting-service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.accounting-service-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.accounting-service-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Accounting Matters Section */
.accounting-matters {
  background-color: var(--bg-white);
}

.matters-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.matters-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.matters-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.matters-content .lead {
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.matters-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.matters-list li {
  display: flex;
  align-items: center;
  gap: var(--space);
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 500;
}

.matter-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  flex-shrink: 0;
}

/* Accounting Approach Section */
.accounting-approach {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.accounting-approach .approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.accounting-approach .approach-text p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* Why Accounting Section */
.why-accounting-section {
  background-color: var(--bg-light);
}

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

.why-accounting-item {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-accounting-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-accounting-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.why-accounting-item h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.why-accounting-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Accounting FAQ Section */
.accounting-faq {
  background-color: var(--bg-white);
}

/* Accounting CTA Section */
.accounting-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-3xl) 0;
}

.accounting-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.accounting-cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.accounting-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.accounting-cta-content .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ========================================
   PAYROLL SERVICES PAGE STYLES
   ======================================== */

/* Payroll Hero Section - uses shared .service-hero with .payroll-hero modifier */
.payroll-hero {
  min-height: 700px;
}

.payroll-hero .service-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space);
  background-color: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.payroll-hero .service-hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space);
  color: var(--white);
}

.payroll-hero .service-hero-subtitle {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.payroll-hero .service-hero-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

/* Payroll Intro Section */
.payroll-intro {
  background-color: var(--bg-white);
}

.payroll-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.payroll-intro-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.payroll-stats-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.payroll-stat {
  text-align: center;
  color: var(--white);
}

.payroll-stat .stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.payroll-stat .stat-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
}

/* Payroll Services Grid */
.payroll-services {
  background-color: var(--bg-light);
}

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

.payroll-service-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid var(--primary);
}

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

.payroll-service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.payroll-service-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.payroll-service-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Payroll Benefits Section */
.payroll-benefits {
  background-color: var(--bg-white);
}

.payroll-benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.payroll-benefits-lead {
  font-size: var(--text-lg);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.payroll-benefits-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.payroll-benefits-list li {
  display: flex;
  align-items: center;
  gap: var(--space);
  font-size: var(--text-base);
  color: var(--text-primary);
  font-weight: 500;
}

.payroll-benefits-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.payroll-image-panel img {
  width: 100%;
  height: auto;
  display: block;
}

/* Payroll Approach Section */
.payroll-approach {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.payroll-approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.payroll-approach-text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* Payroll Why Section */
.payroll-why {
  background-color: var(--bg-light);
}

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

.payroll-why-card {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.payroll-why-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  margin: 0 auto var(--space-sm);
}

.payroll-why-card h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.payroll-why-card p {
  color: var(--text-secondary);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Payroll FAQ Section */
.payroll-faq {
  background-color: var(--bg-white);
}

.payroll-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.payroll-faq-item {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space);
  overflow: hidden;
}

.payroll-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.payroll-faq-question:hover {
  background-color: rgba(0, 82, 27, 0.05);
}

.payroll-faq-icon {
  color: var(--secondary);
  transition: transform var(--transition);
}

.payroll-faq-question[aria-expanded="true"] .payroll-faq-icon {
  transform: rotate(45deg);
}

.payroll-faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.payroll-faq-answer p {
  margin: 0;
}

/* Payroll Final CTA */
.payroll-final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-3xl) 0;
}

.payroll-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.payroll-cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.payroll-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
}

/* ========================================
   COMPANY SECRETARIAL & CIPC PAGE STYLES
   ======================================== */

/* CIPC Hero Section */
.cipc-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cipc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.cipc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 82, 27, 0.95) 0%, rgba(0, 61, 20, 0.9) 100%);
  z-index: 1;
}

.cipc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-3xl) 0;
  color: var(--white);
}

.cipc-hero-tag {
  display: inline-block;
  padding: var(--space-xs) var(--space);
  background-color: rgba(201, 162, 39, 0.2);
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.cipc-hero-title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space);
  color: var(--white);
}

.cipc-hero-subtitle {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.cipc-hero-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.cipc-hero-buttons {
  display: flex;
  gap: var(--space);
  flex-wrap: wrap;
}

/* CIPC Intro Section */
.cipc-intro {
  background-color: var(--bg-white);
}

.cipc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.cipc-intro-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cipc-intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cipc-intro-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* CIPC Journey Section */
.cipc-journey {
  background-color: var(--bg-light);
}

.compliance-journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.journey-step {
  text-align: center;
  max-width: 200px;
}

.journey-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.journey-step h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.journey-step p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin: 0;
}

.journey-arrow {
  color: var(--secondary);
  flex-shrink: 0;
}

/* CIPC Services Grid */
.cipc-services {
  background-color: var(--bg-white);
}

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

.cipc-service-card {
  background-color: var(--bg-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  border-top: 4px solid var(--primary);
}

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

.cipc-service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  color: var(--white);
  margin: 0 auto var(--space-md);
}

.cipc-service-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.cipc-service-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* CIPC Matters Section */
.cipc-matters {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cipc-matters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.cipc-matters-lead {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.cipc-highlights {
  display: grid;
  gap: var(--space-md);
}

.cipc-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space);
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 500;
}

.highlight-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8F5908 0%, #FFFDC4 50%, #8F5908 100%);
  color: var(--primary);
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.cipc-matters-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cipc-matters-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* CIPC Approach Section */
.cipc-approach {
  background-color: var(--bg-light);
}

.cipc-approach-content {
  max-width: 800px;
  margin: 0 auto;
}

.cipc-approach-content p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

/* CIPC Why Section */
.cipc-why {
  background-color: var(--bg-white);
}

.cipc-why-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-lg);
}

.cipc-why-item {
  background-color: var(--bg-light);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
}

.cipc-why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cipc-why-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  color: var(--white);
  margin: 0 auto var(--space-sm);
}

.cipc-why-item h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-xs);
}

.cipc-why-item p {
  color: var(--text-secondary);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* CIPC FAQ Section */
.cipc-faq {
  background-color: var(--bg-light);
}

.cipc-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.cipc-faq-item {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cipc-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  background: none;
  border: none;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.cipc-faq-question:hover {
  background-color: rgba(0, 82, 27, 0.05);
}

.cipc-faq-icon {
  color: var(--secondary);
  transition: transform var(--transition);
}

.cipc-faq-question[aria-expanded="true"] .cipc-faq-icon {
  transform: rotate(45deg);
}

.cipc-faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.cipc-faq-answer p {
  margin: 0;
}

/* CIPC Final CTA */
.cipc-final-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: var(--space-3xl) 0;
}

.cipc-cta-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.cipc-cta-content h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cipc-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-xl);
}

/* Responsive for Service Pages */
@media (max-width: 1024px) {
  .split-layout,
  .benefits-layout,
  .advisory-split,
  .decisions-panel,
  .accounting-intro-grid,
  .matters-layout,
  .payroll-intro-grid,
  .payroll-benefits-wrapper,
  .cipc-intro-grid,
  .cipc-matters-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid,
  .why-admin-grid,
  .why-advisory-grid,
  .why-accounting-grid,
  .approach-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .admin-services-grid,
  .advisory-services-grid,
  .accounting-services-grid,
  .payroll-services-grid,
  .cipc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .payroll-why-grid,
  .cipc-why-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .compliance-journey {
    flex-direction: column;
  }
  
  .journey-arrow {
    transform: rotate(90deg);
  }
  
  .intro-columns {
    grid-template-columns: 1fr;
  }
  
  .bbbee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-hero-title,
  .admin-hero-title,
  .advisory-hero-title,
  .accounting-hero-title,
  .payroll-hero .service-hero-title,
  .cipc-hero-title {
    font-size: var(--text-4xl);
  }
  
  .checklist-grid,
  .two-column-service-grid {
    grid-template-columns: 1fr;
  }
  
  .process-timeline,
  .why-choose-grid,
  .why-admin-grid,
  .why-advisory-grid,
  .why-accounting-grid,
  .admin-services-grid,
  .advisory-services-grid,
  .accounting-services-grid,
  .payroll-services-grid,
  .payroll-why-grid,
  .cipc-services-grid,
  .cipc-why-row,
  .approach-cards,
  .bbbee-grid {
    grid-template-columns: 1fr;
  }
  
  .service-hero-buttons,
  .admin-hero-buttons,
  .advisory-hero-buttons,
  .accounting-hero-buttons,
  .cipc-hero-buttons {
    flex-direction: column;
  }
  
  .experience-stat,
  .advisory-stat,
  .accounting-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: var(--space-lg);
  }
  
  .process-step-vertical {
    flex-direction: column;
    text-align: center;
    gap: var(--space);
  }
}

/* ========================================
   INDUSTRIES PAGE STYLES
   ======================================== */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.industry-card-large {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.industry-card-image {
  height: 200px;
  overflow: hidden;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.industry-card-large:hover .industry-card-image img {
  transform: scale(1.05);
}

.industry-card-body {
  padding: var(--space-lg);
}

.industry-card-body h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.industry-card-body p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Responsive */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  
  .industry-card-image {
    height: 180px;
  }
}

/* Industry Experience Section */
.industry-experience-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.industry-experience-content .section-tag {
  display: block;
  margin-bottom: var(--space);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--text-sm);
}

.industry-experience-content .section-title {
  margin-bottom: var(--space-xl);
}

.industry-text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  text-align: left;
}

.industry-text-columns p {
  color: var(--text-primary);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .industry-text-columns {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}



/* ========================================
   RESOURCES PAGE STYLES
   ======================================== */

/* Category Pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space);
  margin-top: var(--space-xl);
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 500;
  font-size: var(--text-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.category-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Featured Resource Card */
.featured-resource-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

.featured-resource-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.featured-resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-resource-content {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-resource-content h2 {
  font-size: var(--text-3xl);
  color: var(--primary);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
}

.featured-resource-content p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.featured-resource-meta {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: var(--text-sm);
}

.resource-category {
  color: var(--secondary);
  font-weight: 600;
}

.resource-date {
  color: var(--text-muted);
}

.resource-tag {
  position: absolute;
  top: var(--space);
  left: var(--space);
  background: var(--gold);
  color: var(--white);
  padding: var(--space-xs) var(--space);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.resource-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.resource-card-content {
  padding: var(--space-lg);
}

.resource-card-content .resource-category {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-card-content h3 {
  font-size: var(--text-lg);
  color: var(--primary);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-tight);
}

.resource-card-content p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space);
}

.resource-link {
  color: var(--primary);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.resource-link:hover {
  color: var(--secondary);
}

/* Downloads Grid */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.download-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition);
}

.download-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.download-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 82, 27, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--primary);
}

.download-card h4 {
  font-size: var(--text-lg);
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.download-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.download-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .featured-resource-card {
    grid-template-columns: 1fr;
  }
  
  .featured-resource-image {
    min-height: 300px;
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .downloads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-resource-content {
    padding: var(--space-lg);
  }
  
  .featured-resource-content h2 {
    font-size: var(--text-xl);
  }
}

/* Stats Cards Grid */
.stats-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  transition: all var(--transition);
}

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

.stat-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius);
  color: var(--white);
  flex-shrink: 0;
}

.stat-card-content {
  display: flex;
  flex-direction: column;
}

.stat-card-number {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-card-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

@media (max-width: 768px) {
  .stats-cards-grid {
    grid-template-columns: 1fr;
  }
}
