/************************************************
== Modern About Us Page - Enhanced Styles ==
*************************************************/

/* Reset and Base */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/************************************************
== Hero Section ==
*************************************************/
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, #056cb8 0%, #0288d1 50%, #82B440 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(130,180,64,0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(2,136,209,0.3) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: float 20s infinite;
}

.hero-particles::before {
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.hero-particles::after {
  bottom: -150px;
  right: -150px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 100px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-icon-wrapper {
  display: inline-block;
  margin-bottom: 30px;
  animation: fadeInDown 1s ease;
}

.hero-icon {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero-scroll i {
  font-size: 36px;
  color: rgba(255,255,255,0.9);
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-15px);
  }
  60% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/************************************************
== Section Common Styles ==
*************************************************/
section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  color: #056cb8;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, #056cb8, #82B440);
  border-radius: 2px;
}

.section-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.section-text {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-description {
  font-size: 19px;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

/************************************************
== Mission Section ==
*************************************************/
.about-mission {
  background: #fff;
  position: relative;
}

.about-mission::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(5,108,184,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mission-content {
  padding-right: 50px;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(5,108,184,0.1) 0%, rgba(130,180,64,0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: #056cb8;
  box-shadow: 0 15px 40px rgba(5,108,184,0.2);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #056cb8 0%, #0288d1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(10deg);
}

.stat-icon i {
  font-size: 28px;
  color: #fff;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #056cb8, #82B440);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 1;
}

.mission-illustration {
  position: relative;
  padding: 30px;
  animation: fadeInRight 1s ease;
}

.mission-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
  animation: illustrationFloat 6s ease-in-out infinite;
}

@keyframes illustrationFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

/************************************************
== Values Section ==
*************************************************/
.about-values {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.about-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(5,108,184,0.03) 0%, transparent 100%);
  pointer-events: none;
}

.value-card {
  background: #fff;
  padding: 50px 35px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5,108,184,0.1), transparent);
  transition: left 0.5s ease;
}

.value-card:hover::before {
  left: 100%;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #056cb8, #82B440);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(5,108,184,0.2);
  border-color: #e3f2fd;
}

.value-illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.value-card:hover .value-illustration {
  transform: scale(1.1);
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.value-illustration svg {
  width: 70px;
  height: 70px;
  transition: transform 0.5s ease;
}

.value-card:hover .value-illustration svg {
  transform: scale(1.1);
}

.value-title {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.value-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  position: relative;
  z-index: 1;
}

/************************************************
== Process Section ==
*************************************************/
.about-process {
  background: #fff;
  position: relative;
}

.about-process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(130,180,64,0.03) 100%);
  pointer-events: none;
}

.process-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 60px 45px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  border: 3px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(5,108,184,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(5,108,184,0.25);
  border-color: #056cb8;
}

.process-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(5,108,184,0.1), rgba(130,180,64,0.1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.process-illustration {
  width: 140px;
  height: 140px;
  margin: 0 auto 35px;
  background: linear-gradient(135deg, #056cb8 0%, #0288d1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(5,108,184,0.3);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.process-card:hover .process-illustration {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 20px 50px rgba(5,108,184,0.4);
}

.process-illustration svg {
  width: 100px;
  height: 100px;
}

.process-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.process-text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.process-connector {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #056cb8, transparent);
  display: none;
}

@media (min-width: 992px) {
  .process-card:not(:last-child) .process-connector {
    display: block;
  }
}

/************************************************
== Team Section ==
*************************************************/
.about-team {
  background: #fff;
  position: relative;
}

.about-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(130,180,64,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-content {
  padding-left: 50px;
}

.team-illustration {
  position: relative;
  padding: 30px;
  animation: fadeInLeft 1s ease;
}

.team-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
  animation: teamFloat 5s ease-in-out infinite;
}

@keyframes teamFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

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

.expertise-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.expertise-item:hover {
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
  transform: translateX(8px);
  border-color: #056cb8;
  box-shadow: 0 5px 20px rgba(5,108,184,0.15);
}

.expertise-item i {
  font-size: 22px;
  color: #82B440;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.expertise-item:hover i {
  transform: scale(1.2);
}

.expertise-item span {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

/************************************************
== CTA Section ==
*************************************************/
.about-cta {
  background: linear-gradient(135deg, #056cb8 0%, #0288d1 50%, #82B440 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: ctaGlow 10s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.cta-illustration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.3;
}

.cta-illustration svg {
  width: 100%;
  height: 100%;
}

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

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 35px;
  animation: ctaIconPulse 3s ease-in-out infinite;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

@keyframes ctaIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cta-title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-text {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 50px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 18px 45px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #fff;
  color: #056cb8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: #fff;
  color: #056cb8;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #056cb8;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

/************************************************
== Responsive Design - Mobile First ==
*************************************************/

/* Tablets (768px and below) */
@media (max-width: 768px) {
  /* Hero Section */
  .about-hero {
    height: 70vh;
    min-height: 500px;
  }

  .hero-icon {
    width: 100px;
    height: 100px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-scroll {
    bottom: 30px;
  }

  /* Section Spacing */
  section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .section-text {
    font-size: 17px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  /* Mission Section */
  .mission-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .mission-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .stat-item {
    padding: 28px 18px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .stat-icon i {
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 12px;
  }

  .mission-illustration,
  .team-illustration {
    padding: 20px;
    margin-bottom: 50px;
  }

  /* Values Section */
  .value-card {
    margin-bottom: 25px;
    padding: 40px 30px;
  }

  .value-illustration {
    width: 100px;
    height: 100px;
  }

  .value-illustration svg {
    width: 60px;
    height: 60px;
  }

  /* Process Section */
  .process-card {
    padding: 45px 35px;
    margin-bottom: 25px;
  }

  .process-illustration {
    width: 120px;
    height: 120px;
  }

  .process-illustration svg {
    width: 85px;
    height: 85px;
  }

  /* Team Section */
  .team-content {
    padding-left: 0;
    margin-bottom: 50px;
  }

  .expertise-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* CTA Section */
  .cta-icon {
    width: 80px;
    height: 80px;
  }

  .cta-title {
    font-size: 42px;
  }

  .cta-text {
    font-size: 18px;
  }

  .cta-buttons {
    gap: 18px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  /* Hero Section */
  .about-hero {
    height: 60vh;
    min-height: 450px;
  }

  .hero-icon {
    width: 80px;
    height: 80px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  /* Section Spacing */
  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 16px;
  }

  .section-label {
    font-size: 12px;
    padding-left: 25px;
  }

  .section-label::before {
    width: 18px;
  }

  /* Mission Section */
  .mission-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .stat-item {
    padding: 25px 20px;
  }

  .stat-icon {
    width: 45px;
    height: 45px;
  }

  .stat-icon i {
    font-size: 22px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Values Section */
  .value-card {
    padding: 35px 25px;
  }

  .value-illustration {
    width: 90px;
    height: 90px;
  }

  .value-illustration svg {
    width: 55px;
    height: 55px;
  }

  .value-title {
    font-size: 22px;
  }

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

  /* Process Section */
  .process-card {
    padding: 40px 25px;
  }

  .process-number {
    font-size: 56px;
    top: 25px;
    right: 25px;
  }

  .process-illustration {
    width: 100px;
    height: 100px;
  }

  .process-illustration svg {
    width: 75px;
    height: 75px;
  }

  .process-title {
    font-size: 24px;
  }

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

  /* Team Section */
  .expertise-item {
    padding: 14px 18px;
  }

  .expertise-item i {
    font-size: 20px;
  }

  .expertise-item span {
    font-size: 14px;
  }

  /* CTA Section */
  .cta-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .btn-primary, .btn-secondary {
    padding: 16px 35px;
    font-size: 15px;
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-icon {
    width: 70px;
    height: 70px;
  }

  .section-title {
    font-size: 28px;
  }

  .stat-number {
    font-size: 28px;
  }

  .value-title {
    font-size: 20px;
  }

  .process-title {
    font-size: 22px;
  }

  .process-number {
    font-size: 48px;
  }

  .cta-title {
    font-size: 28px;
  }

  .btn-primary, .btn-secondary {
    padding: 14px 30px;
    font-size: 14px;
  }
}

/************************************************
== Performance & Hardware Acceleration ==
*************************************************/

/* Hardware acceleration for smoother animations */
.value-card,
.process-card,
.value-illustration,
.process-illustration,
.mission-illustration svg,
.team-illustration svg,
.stat-item,
.expertise-item {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* Prevent text size adjustments on mobile */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .hero-title,
  .section-title,
  .cta-title {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

/* Touch optimization for mobile devices */
@media (hover: none) and (pointer: coarse) {
  .btn-primary,
  .btn-secondary {
    min-height: 54px;
    min-width: 140px;
  }

  .value-card,
  .process-card {
    min-height: 320px;
  }

  .stat-item,
  .expertise-item {
    min-height: 48px;
  }
}

/* Container improvements for mobile */
@media (max-width: 768px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/************************************************
== Accessibility Improvements ==
*************************************************/

/* Focus states for keyboard navigation */
.btn-primary:focus,
.btn-secondary:focus {
  outline: 3px solid rgba(255,255,255,0.5);
  outline-offset: 4px;
}

.value-card:focus-within,
.process-card:focus-within,
.expertise-item:focus-within {
  outline: 2px solid #056cb8;
  outline-offset: 3px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/************************************************
== Print Styles ==
*************************************************/
@media print {
  .hero-scroll,
  .cta-buttons {
    display: none;
  }

  section {
    page-break-inside: avoid;
  }

  .value-card,
  .process-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}