/* ========================================
   CSS VARIABLES - Easy Color Customization
   ======================================== */

:root {
  /* Primary Colors - Change these to customize your theme */
  --primary-color: #ff6900;
  --primary-dark: #dc2626;
  --primary-light: #fca5a5;

  /* Secondary Colors */
  --secondary-color: #64748b;
  --secondary-dark: #475569;
  --secondary-light: #cbd5e1;

  /* Light Theme Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-tertiary: #94a3b8;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

  /* Hero Background */
  --hero-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --hero-overlay: rgba(0, 0, 0, 0.3);

  /* Spacing */
  --section-padding: 6rem 0;
  --container-padding: 0 1.5rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* Dark Theme */
[data-theme='dark'] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --border-color: #334155;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --hero-overlay: rgba(0, 0, 0, 0.5);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color var(--transition-normal),
    color var(--transition-normal);
  overflow-x: hidden;
}

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

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

button {
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

ul {
  list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.section-title-center {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

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

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================
   THEME TOGGLE BUTTON
   ======================================== */

.theme-toggle {
  position: fixed;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.theme-toggle:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
  position: absolute;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

[data-theme='dark'] .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

[data-theme='dark'] .theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ========================================
   BUTTONS
   ======================================== */

.cta-btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.cta-btn-primary svg {
  transition: transform var(--transition-fast);
}

.cta-btn-primary:hover svg {
  transform: translateX(4px);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
}

.cta-btn-secondary:hover {
  background: white;
  border-color: white;
  color: var(--primary-color);
}

.cta-btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  flex-shrink: 0;
  white-space: nowrap;
}

.cta-btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.cta-btn-outline svg {
  transition: transform var(--transition-fast);
}

.cta-btn-outline:hover svg {
  transform: translateX(4px);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0;
  min-height: 110px;
  z-index: 100;
  animation: fadeIn 0.6s ease;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
}

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

.logo-image {
  height: 150px;
  max-width: 350px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Show light logo by default, hide dark logo */
.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

/* In dark theme, hide light logo and show dark logo */
[data-theme='dark'] .logo-light {
  display: none;
}

[data-theme='dark'] .logo-dark {
  display: block;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  min-height: 100vh;
  background: var(--hero-bg);
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  z-index: 2;
}

.navbar,
.hero-content {
  position: relative;
  /* z-index: 10; */
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0rem 0 4rem;
  text-align: center;
}

.hero-content .container {
  width: 100%;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-content .cta-btn-primary {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

.partners-section {
  position: relative;
  z-index: 10;
  padding: 3rem 0;
  background: var(--bg-primary);
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.6s forwards;
}

.partners-grid img {
  opacity: 0.5;
  transition: opacity var(--transition-normal);
  filter: grayscale(100%);
}

.partners-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.stat-card:nth-child(1) {
  animation-delay: 0.1s;
}
.stat-card:nth-child(2) {
  animation-delay: 0.2s;
}
.stat-card:nth-child(3) {
  animation-delay: 0.3s;
}
.stat-card:nth-child(4) {
  animation-delay: 0.4s;
}

.stat-card.visible {
  animation-play-state: running;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

.service-card.visible {
  animation-play-state: running;
}

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

.service-number {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  min-height: 2em;
  display: flex;
  align-items: center;
}

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
  min-height: 3.5em;
}

.service-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  margin-top: auto;
}

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

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

/* ========================================
   VALUES SECTION
   ======================================== */

.values {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.values-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.values-left {
  position: sticky;
  top: 2rem;
}

.values-intro {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.value-card:nth-child(1) {
  animation-delay: 0.1s;
}
.value-card:nth-child(2) {
  animation-delay: 0.2s;
}
.value-card:nth-child(3) {
  animation-delay: 0.3s;
}
.value-card:nth-child(4) {
  animation-delay: 0.4s;
}

.value-card.visible {
  animation-play-state: running;
}

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

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.value-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.process-left {
  position: sticky;
  top: 2rem;
}

.process-description {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.process-step {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-normal);
  opacity: 0;
  animation: slideInRight 0.6s ease forwards;
  animation-play-state: paused;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}

.process-step.visible {
  animation-play-state: running;
}

.process-step:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.step-total {
  color: var(--text-tertiary);
  font-size: 1.25rem;
}

.step-arrow {
  margin-left: auto;
  color: var(--text-tertiary);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

.testimonial-controls {
  display: flex;
  gap: 1rem;
}

.testimonial-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-normal);
}

.testimonial-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  display: none;
}

.testimonial-card.active {
  display: block;
  animation: fadeInUp 0.6s ease forwards;
}

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

.quote-icon {
  font-size: 4rem;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.testimonial-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--text-primary);
  font-style: italic;
}

.testimonial-author strong {
  font-weight: 600;
}

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

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  padding: 6rem 0;
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hero-overlay);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.cta-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.cta-section .cta-btn-primary {
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-logo svg {
  color: var(--primary-color);
}

.footer-logo .logo-image {
  height: 150px;
  max-width: 350px;
  width: auto;
  object-fit: contain;
}

.newsletter h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.newsletter p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

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

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .values-layout,
  .process-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .values-left,
  .process-left {
    position: static;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .theme-toggle {
    right: 1rem;
  }

  .nav-menu,
  .cta-btn-secondary {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .logo-image {
    height: 80px;
    max-width: 200px;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 110px;
    right: 0;
    left: 0;
    background: var(--bg-primary);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease forwards;
    z-index: 999;
  }

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

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

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

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

  .nav-menu.active a {
    color: var(--text-primary);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
  }

  .nav-menu.active a:last-child {
    border-bottom: none;
  }

  .about-content {
    flex-direction: column;
  }

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

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

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .testimonials-header {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

/* Page Header */
.page-header {
  padding: 12rem 0 4rem;
  background: var(--bg-secondary);
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.breadcrumb a {
  color: var(--primary-color);
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.1s forwards;
}

.page-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

/* Company Story Section */
.company-story {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 600px;
  opacity: 0;
  animation: slideInLeft 0.8s ease forwards;
}

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

.story-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.story-badge h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.story-badge p {
  font-size: 0.875rem;
  font-weight: 500;
}

.story-content {
  opacity: 0;
  animation: slideInRight 0.8s ease forwards;
}

.story-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

/* Mission & Vision Section */
.mission-vision {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mv-card {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.mv-card:nth-child(1) {
  animation-delay: 0.1s;
}

.mv-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mv-card.visible {
  animation-play-state: running;
}

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

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--primary-color);
}

.mv-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.mv-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* Team Section */
.team-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.team-card:nth-child(1) {
  animation-delay: 0.1s;
}
.team-card:nth-child(2) {
  animation-delay: 0.2s;
}
.team-card:nth-child(3) {
  animation-delay: 0.3s;
}
.team-card:nth-child(4) {
  animation-delay: 0.4s;
}

.team-card.visible {
  animation-play-state: running;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-light);
  transition: all var(--transition-normal);
}

.team-card:hover .team-image {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

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

.team-name {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.team-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Core Values Detailed Section */
.core-values {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.values-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-detailed-card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--primary-color);
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.value-detailed-card:nth-child(1) {
  animation-delay: 0.1s;
}
.value-detailed-card:nth-child(2) {
  animation-delay: 0.2s;
}
.value-detailed-card:nth-child(3) {
  animation-delay: 0.3s;
}
.value-detailed-card:nth-child(4) {
  animation-delay: 0.4s;
}
.value-detailed-card:nth-child(5) {
  animation-delay: 0.5s;
}
.value-detailed-card:nth-child(6) {
  animation-delay: 0.6s;
}

.value-detailed-card.visible {
  animation-play-state: running;
}

.value-detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-detailed-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1rem;
  line-height: 1;
}

.value-detailed-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-detailed-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* Timeline Section */
.timeline-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.timeline {
  max-width: 900px;
  margin: 4rem auto 0;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-item.visible {
  animation-play-state: running;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border: 4px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-light);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-top: 0.25rem;
}

.timeline-content {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.timeline-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.timeline-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* Service Areas Section */
.service-areas {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.service-area-card {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

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

.service-area-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #e67e22);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-area-icon svg {
  color: white;
}

.service-area-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-area-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

.service-area-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area-highlights li {
  color: var(--text-secondary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.service-area-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .story-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-image {
    height: 450px;
  }

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

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-item {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 13rem 0 3rem;
  }

  .story-image {
    height: 350px;
  }

  .story-badge {
    bottom: 1rem;
    right: 1rem;
    padding: 1.5rem;
  }

  .story-badge h3 {
    font-size: 2rem;
  }

  .mv-card {
    padding: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }

  .service-areas-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-area-card {
    padding: 2rem;
  }

  .service-area-icon {
    width: 64px;
    height: 64px;
  }

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

  .timeline {
    padding-left: 1rem;
  }

  .timeline-item {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    padding-bottom: 2rem;
  }

  .timeline-item::before {
    left: -1.75rem;
  }

  .timeline-year {
    font-size: 1.25rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .team-image {
    width: 150px;
    height: 150px;
  }
}

/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

/* Projects Filter Section */
.projects-filter {
  padding: 3rem 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Projects Grid Section */
.projects-grid-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.project-card:nth-child(1) {
  animation-delay: 0.1s;
}
.project-card:nth-child(2) {
  animation-delay: 0.2s;
}
.project-card:nth-child(3) {
  animation-delay: 0.3s;
}
.project-card:nth-child(4) {
  animation-delay: 0.4s;
}
.project-card:nth-child(5) {
  animation-delay: 0.5s;
}
.project-card:nth-child(6) {
  animation-delay: 0.6s;
}
.project-card:nth-child(7) {
  animation-delay: 0.7s;
}
.project-card:nth-child(8) {
  animation-delay: 0.8s;
}
.project-card:nth-child(9) {
  animation-delay: 0.9s;
}

.project-card.visible {
  animation-play-state: running;
}

.project-card.hidden {
  display: none;
}

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

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.view-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.view-project-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.view-project-btn svg {
  transition: transform var(--transition-fast);
}

.view-project-btn:hover svg {
  transform: translateX(4px);
}

.project-content {
  padding: 2rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  gap: 1rem;
}

.project-category {
  padding: 0.375rem 0.875rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
}

.project-location {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ========================================
   PROJECT DETAIL PAGE STYLES
   ======================================== */

/* Project Hero */
.project-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  overflow: hidden;
  margin-top: 140px;
}

.project-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.project-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

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

.project-hero .container {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 1;
}

.project-hero .breadcrumb {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.8);
}

.project-hero .breadcrumb a {
  color: white;
}

/* Project Header Info */
.project-header-info {
  padding: 4rem 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.project-header-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.project-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.project-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.project-location-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.project-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.info-value {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Project Overview */
.project-overview {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.overview-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}

.overview-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  height: fit-content;
}

.sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.sidebar-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

.overview-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
}

/* Project Gallery */
.project-gallery {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.gallery-section {
  margin-top: 3rem;
}

.gallery-section:first-of-type {
  margin-top: 3rem;
}

.gallery-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.gallery-section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: scaleIn 0.6s ease forwards;
  animation-play-state: paused;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-item.visible {
  animation-play-state: running;
}

.gallery-item.large {
  /* All items same size now */
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Key Features */
.key-features {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}
.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}
.feature-item:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-item.visible {
  animation-play-state: running;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Challenges & Solutions */
.challenges-solutions {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.cs-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.cs-card:nth-child(1) {
  animation-delay: 0.1s;
}
.cs-card:nth-child(2) {
  animation-delay: 0.2s;
}
.cs-card:nth-child(3) {
  animation-delay: 0.3s;
}

.cs-card.visible {
  animation-play-state: running;
}

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

.cs-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.cs-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.cs-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.cs-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.cs-divider {
  height: 2px;
  background: var(--border-color);
  margin: 1.5rem 0;
}

/* Related Projects */
.related-projects {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.related-card {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-play-state: paused;
}

.related-card:nth-child(1) {
  animation-delay: 0.1s;
}
.related-card:nth-child(2) {
  animation-delay: 0.2s;
}
.related-card:nth-child(3) {
  animation-delay: 0.3s;
}

.related-card.visible {
  animation-play-state: running;
}

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

.related-image {
  height: 220px;
  overflow: hidden;
}

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

.related-card:hover .related-image img {
  transform: scale(1.1);
}

.related-content {
  padding: 1.5rem;
}

.related-category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.related-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.related-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.related-link:hover {
  gap: 0.5rem;
  color: var(--primary-dark);
}

/* Responsive Design for Projects Pages */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
  }

  .project-header-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-sidebar {
    position: static;
  }

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

  .gallery-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .filter-buttons {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

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

  .project-hero {
    height: 50vh;
    min-height: 400px;
  }

  .project-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item,
  .gallery-item.large {
    height: 220px;
  }

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

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

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

@media (max-width: 480px) {
  .project-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat {
    text-align: left;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
  }
}

/* ========================================
   FIXED NAVBAR FOR ALL PAGES
   ======================================== */

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  padding: 1rem 0;
  min-height: 110px;
}

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

.navbar-fixed .nav-menu a {
  color: var(--text-primary);
}

.navbar-fixed .mobile-menu-toggle span {
  background: var(--text-primary);
}

.navbar-fixed .cta-btn-secondary {
  color: var(--text-primary);
  border-color: var(--border-color);
}

.navbar-fixed .cta-btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Info Section */
.contact-info-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: var(--bg-secondary);
  padding: 3rem 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin: 0 auto 1.5rem;
}

.contact-info-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-info-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.9375rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-intro {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-feature svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-form-right {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.contact-form button[type='submit'] {
  width: fit-content;
  margin-top: 0.5rem;
}

/* Map Section */
.map-section {
  background: var(--bg-primary);
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background: var(--bg-secondary);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  display: block;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-normal);
  margin-bottom: 1.5rem;
}

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

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.9375rem;
}

/* ========================================
   LEGAL PAGES STYLES
   ======================================== */

.legal-content {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-document h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-document p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.legal-document ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  list-style: disc;
}

.legal-document li {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.legal-document strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Responsive Design for Contact and Legal Pages */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .contact-form-right {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-placeholder {
    height: 350px;
  }

  .legal-document {
    padding: 0 1rem;
  }
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

.gallery-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

/* Video Container */
.video-container {
  margin-bottom: 4rem;
}

.featured-video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 2rem auto;
  display: block;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Empty State */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 400px;
}

.empty-state svg {
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .featured-video {
    border-radius: var(--radius-md);
  }
}

@media (max-width: 480px) {
  .contact-form-right {
    padding: 1.5rem;
  }

  .map-placeholder {
    height: 300px;
  }
}

/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* Service Banner */
.service-banner {
  position: relative;
  background: var(--hero-bg);
  min-height: 400px;
  margin-top: 80px;
}

.service-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0 4rem;
  position: relative;
  min-height: 400px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
}

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

.breadcrumb span {
  opacity: 0.7;
}

.service-banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-banner-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  line-height: 1.6;
}

/* Service Details Section */
.service-details {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

.service-details-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  align-items: start;
}

.service-details-main {
  max-width: 800px;
}

.service-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* Service Features */
.service-features {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.service-features h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list svg {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-top: 0.125rem;
}

.feature-list span {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Service Content */
.service-content {
  margin-bottom: 3rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.service-content h3:first-child {
  margin-top: 0;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Service CTA Inline */
.service-cta-inline {
  background-color: var(--bg-secondary);
  border: 2px solid var(--border-color);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.service-cta-inline h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.service-cta-inline p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Sidebar */
.service-details-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

/* Service Meta */
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.meta-item svg {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-top: 0.25rem;
}

.meta-item div {
  flex: 1;
}

.meta-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.meta-item span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Related Services */
.related-services {
  list-style: none;
}

.related-services li {
  margin-bottom: 0.75rem;
}

.related-services a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

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

.related-services a::before {
  content: '→';
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Contact Card */
.contact-card {
  background: var(--bg-tertiary);
  border: 2px solid var(--primary-color);
}

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

.contact-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.contact-item:hover {
  color: var(--primary-color);
}

.contact-item svg {
  flex-shrink: 0;
}

/* Make service cards clickable on index */
.services-grid a.service-card {
  display: block;
  cursor: pointer;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

/* Responsive Service Pages */
@media (max-width: 968px) {
  .service-details-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-details-sidebar {
    position: static;
  }

  .service-banner-title {
    font-size: 2.5rem;
  }

  .service-banner-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .service-banner-content {
    padding: 6rem 0 3rem;
  }

  .service-banner-title {
    font-size: 2rem;
  }

  .service-banner-subtitle {
    font-size: 1rem;
  }

  .service-intro {
    font-size: 1rem;
  }

  .service-features {
    padding: 1.5rem;
  }

  .service-cta-inline {
    padding: 2rem 1.5rem;
  }

  .sidebar-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    font-size: 0.8125rem;
  }

  .service-banner-title {
    font-size: 1.75rem;
  }

  .service-banner-subtitle {
    font-size: 0.9375rem;
  }

  .service-features h3 {
    font-size: 1.25rem;
  }

  .service-content h3 {
    font-size: 1.25rem;
  }

  .service-cta-inline h3 {
    font-size: 1.5rem;
  }
}
