/* ===== CSS VARIABLES ===== */
:root {
  /* Modern Color Palette - Inspired by World-Class Security Companies */
  --primary-dark: #0f1419;           /* Deep navy background */
  --primary-navy: #1a2332;           /* Primary navy */
  --secondary-navy: #2a3441;         /* Lighter navy for cards */
  --accent-magenta: #e91e63;         /* Bright magenta accent */
  --accent-cyan: #00bcd4;            /* Cyan secondary accent */
  --accent-orange: #ff6b35;          /* Orange for warnings/highlights */
  --accent-green: #00e676;           /* Success green */
  
  /* Text Colors */
  --text-white: #ffffff;             /* Primary white text */
  --text-light: #b0bec5;             /* Light gray text */
  --text-muted: #78909c;             /* Muted text */
  --text-dark: #263238;              /* Dark text for light backgrounds */
  
  /* Background Colors */
  --bg-primary: var(--primary-dark);
  --bg-secondary: var(--primary-navy);
  --bg-card: var(--secondary-navy);
  --bg-light: #f8fafc;              /* Light background for contrast */
  --bg-white: #ffffff;
  
  /* Legacy Color Variables (for compatibility) */
  --primary-blue: var(--accent-cyan);
  --secondary-blue: var(--accent-magenta);
  --accent-gold: var(--accent-orange);
  --white: var(--bg-white);
  --light-bg: var(--bg-light);
  --border-light: #37474f;
  
  /* Border and Shadow Colors */
  --shadow-dark: rgba(15, 20, 25, 0.3);
  --shadow-glow: rgba(233, 30, 99, 0.3);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
  --h1-font-size: 3.5rem;
  --h2-font-size: 2.5rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Spacing */
  --header-height: 4rem;
  --section-padding: 5rem 0;
  --container-margin: 0 1.5rem;
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  color: var(--text-white);
  line-height: 1.6;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
}

h1, h2, h3, h4 {
  font-weight: var(--font-semibold);
  line-height: 1.2;
  margin-bottom: var(--mb-1);
  color: var(--text-white);
}

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }

p {
  margin-bottom: var(--mb-1);
  color: var(--text-light);
}

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

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

ul {
  list-style: none;
}

/* ===== REUSABLE CLASSES ===== */
.container {
  max-width: 1200px;
  margin: var(--container-margin);
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--section-padding);
}

.section__header {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--text-white);
  margin-bottom: var(--mb-1);
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-cyan) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--secondary {
  background-color: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
}

.btn--secondary:hover {
  background-color: var(--accent-cyan);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-light);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  height: 2.5rem;
  width: auto;
}

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

.nav__link {
  color: var(--text-light);
  font-weight: var(--font-medium);
  position: relative;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active-link {
  color: var(--accent-cyan);
}

.nav__link.active-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-cyan);
}

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

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius);
  padding: 1rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

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

.dropdown__link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown__link:hover {
  background-color: var(--light-bg);
  color: var(--primary-blue);
}

/* ===== HOME SECTION ===== */
.home {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.home__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.home__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: var(--text-white);
  margin-bottom: var(--mb-1-5);
  line-height: 1.1;
}

.home__title-accent {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.home__description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--mb-2-5);
  line-height: 1.7;
}

.home__buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--mb-3);
  flex-wrap: wrap;
}

.home__stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  position: relative;
}

.stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat__label {
  font-size: var(--small-font-size);
  color: var(--text-light);
  font-weight: var(--font-medium);
}

.home__image {
  position: relative;
}

.home__img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
}

/* ===== FEATURES SECTION ===== */
.features {
  background-color: var(--bg-secondary);
  position: relative;
}

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

.feature__card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.feature__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-magenta), var(--accent-cyan));
}

.feature__card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature__card:hover::after {
  opacity: 1;
}

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--mb-1-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-magenta), var(--accent-cyan));
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.feature__icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.feature__title {
  font-size: var(--h3-font-size);
  color: var(--text-white);
  margin-bottom: var(--mb-1);
  position: relative;
  z-index: 1;
}

.feature__description {
  color: var(--text-light);
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.feature__link {
  color: var(--accent-cyan);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.feature__link:hover {
  color: var(--accent-magenta);
  transform: translateX(5px);
}

.feature__link::after {
  content: '→';
  transition: var(--transition);
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-preview__badge {
  margin-bottom: var(--mb-1);
}

.badge {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-preview__title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1-5);
}

.about-preview__description {
  color: var(--text-light);
  margin-bottom: var(--mb-2);
  line-height: 1.7;
}

.about-preview__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.preview-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.preview-feature__icon {
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.about-preview__img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
}

.footer__container {
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.footer__logo-img {
  height: 3rem;
  margin-bottom: var(--mb-1);
  filter: brightness(0) invert(1);
}

.footer__description {
  color: #9ca3af;
  margin-bottom: var(--mb-1-5);
  line-height: 1.6;
}

.footer__emergency {
  background-color: rgba(59, 130, 246, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-blue);
}

.footer__emergency-title {
  color: var(--white);
  font-size: var(--small-font-size);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__emergency-number {
  color: var(--secondary-blue);
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  transition: var(--transition);
}

.footer__emergency-number:hover {
  color: var(--white);
}

.footer__title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: var(--font-semibold);
  margin-bottom: var(--mb-1-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: #9ca3af;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--secondary-blue);
  transform: translateX(5px);
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #9ca3af;
  line-height: 1.6;
}

.footer__contact-item i {
  color: var(--secondary-blue);
  font-size: 1.125rem;
  margin-top: 0.125rem;
}

.footer__bottom {
  border-top: 1px solid #374151;
  padding-top: var(--mb-1-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  color: #9ca3af;
  font-size: var(--small-font-size);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  color: #9ca3af;
  font-size: var(--small-font-size);
  transition: var(--transition);
}

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

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

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

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

/* Animation classes */
.animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out;
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background-color: var(--light-bg);
}

.testimonials__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial__card {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

.testimonial__card.active {
  display: block;
}

.testimonial__quote {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: var(--mb-1);
}

.testimonial__text {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--mb-2);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial__name {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: var(--font-semibold);
  margin-bottom: 0.25rem;
}

.testimonial__position {
  color: var(--text-light);
  font-size: var(--small-font-size);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: var(--mb-2-5);
}

.testimonial__btn {
  background-color: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.testimonial__btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.testimonials__dots {
  display: flex;
  gap: 0.75rem;
}

.testimonial__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--border-light);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial__dot.active,
.testimonial__dot:hover {
  background-color: var(--primary-blue);
}

/* ===== NEWS SECTION ===== */
.news__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

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

.news__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.news__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news__card:hover .news__img {
  transform: scale(1.05);
}

.news__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news__content {
  padding: 1.5rem;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--mb-1);
  font-size: var(--small-font-size);
  color: var(--text-light);
}

.news__date,
.news__author {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.news__title {
  margin-bottom: var(--mb-1);
}

.news__link {
  color: var(--text-dark);
  font-weight: var(--font-semibold);
  transition: var(--transition);
}

.news__link:hover {
  color: var(--primary-blue);
}

.news__excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.news__read-more {
  color: var(--primary-blue);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.news__read-more:hover {
  color: var(--secondary-blue);
  transform: translateX(5px);
}

.news__read-more::after {
  content: '→';
  transition: var(--transition);
}

.news__footer {
  text-align: center;
}

/* ===== RESPONSIVE UPDATES FOR NEW SECTIONS ===== */
@media screen and (max-width: 768px) {
  .testimonials__controls {
    gap: 1rem;
  }
  
  .testimonial__btn {
    width: 40px;
    height: 40px;
  }
  
  .testimonial__text {
    font-size: 1rem;
  }
  
  .news__container {
    grid-template-columns: 1fr;
  }
  
  .news__card {
    margin-bottom: 1rem;
  }
  
  .news__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .testimonial__card {
    padding: 1rem;
  }
  
  .testimonial__quote {
    font-size: 2rem;
  }
  
  .news__content {
    padding: 1rem;
  }
  
  .news__image {
    height: 180px;
  }
}


/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  text-align: center;
}

.page-header__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-1);
}

.page-header__subtitle {
  font-size: 1.125rem;
  margin-bottom: var(--mb-1-5);
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--small-font-size);
}

.breadcrumb__link {
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.breadcrumb__link:hover {
  opacity: 1;
}

.breadcrumb__separator {
  opacity: 0.6;
}

.breadcrumb__current {
  opacity: 1;
  font-weight: var(--font-medium);
}

/* ===== COMPANY STORY SECTION ===== */
.company-story__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.badge-container {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--mb-1-5);
  flex-wrap: wrap;
}

.badge--secondary {
  background-color: var(--secondary-blue);
}

.company-story__title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1-5);
}

.company-story__text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-1-5);
}

.company-story__img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

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

.mission-card__icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  font-size: 2rem;
  color: var(--primary-blue);
}

.mission-card__title {
  font-size: var(--h3-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.mission-card__text {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

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

.leader__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.leader__image {
  height: 300px;
  overflow: hidden;
}

.leader__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.leader__card:hover .leader__img {
  transform: scale(1.05);
}

.leader__content {
  padding: 2rem;
}

.leader__name {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.leader__position {
  color: var(--primary-blue);
  font-weight: var(--font-medium);
  font-size: 1.125rem;
  margin-bottom: var(--mb-1-5);
  display: block;
}

.leader__bio {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.leader__contact {
  border-top: 1px solid var(--border-light);
  padding-top: var(--mb-1);
}

.leader__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.leader__phone:hover {
  color: var(--secondary-blue);
}

/* ===== VALUES SECTION ===== */
.values__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value__card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.value__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.value__icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  font-size: 1.75rem;
  color: var(--primary-blue);
}

.value__title {
  font-size: var(--h3-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.value__description {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages__container {
  display: grid;
  gap: 2rem;
}

.advantage__item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.advantage__item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-medium);
}

.advantage__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
}

.advantage__content {
  flex: 1;
}

.advantage__title {
  font-size: var(--h3-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.advantage__description {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
}

.cta__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
}

.cta__description {
  font-size: 1.125rem;
  margin-bottom: var(--mb-2-5);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===== RESPONSIVE UPDATES FOR ABOUT PAGE ===== */
@media screen and (max-width: 1024px) {
  .company-story__container,
  .mission-vision__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .leadership__container {
    grid-template-columns: 1fr;
  }
  
  .advantage__item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .page-header {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
  }
  
  .page-header__title {
    font-size: 2rem;
  }
  
  .values__container {
    grid-template-columns: 1fr;
  }
  
  .mission-card,
  .value__card {
    padding: 1.5rem;
  }
  
  .leader__content {
    padding: 1.5rem;
  }
  
  .advantage__item {
    padding: 1.5rem;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta__buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media screen and (max-width: 480px) {
  .badge-container {
    justify-content: center;
  }
  
  .mission-card__icon,
  .value__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .advantage__number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}


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

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card--featured {
  border: 2px solid var(--primary-blue);
  position: relative;
}

.service-card--featured::before {
  content: 'Featured';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--mb-1-5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-card__title {
  font-size: var(--h3-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.service-card__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.service-card__features {
  list-style: none;
  margin-bottom: var(--mb-2);
}

.service-card__features li {
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 1.5rem;
}

.service-card__features li:last-child {
  border-bottom: none;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: var(--font-bold);
}

/* Service Detail Sections */
.service-detail__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail__badge {
  margin-bottom: var(--mb-1);
}

.service-detail__title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1-5);
}

.service-detail__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-2);
  font-size: 1.125rem;
}

.service-detail__img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.service-features {
  display: grid;
  gap: 1.5rem;
}

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

.feature-item__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.feature-item__title {
  color: var(--text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-item__text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Additional Services */
.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.additional-service {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
}

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

.additional-service__icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  font-size: 1.75rem;
  color: var(--primary-blue);
}

.additional-service__title {
  font-size: var(--h3-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.additional-service__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.additional-service__list {
  list-style: none;
  text-align: left;
}

.additional-service__list li {
  color: var(--text-light);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.additional-service__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: var(--font-bold);
}

/* Technology Section */
.technology__container {
  display: grid;
  gap: 4rem;
}

.tech-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tech-feature--reverse {
  direction: rtl;
}

.tech-feature--reverse > * {
  direction: ltr;
}

.tech-feature__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.tech-feature__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.tech-feature:hover .tech-feature__img {
  transform: scale(1.05);
}

.tech-feature__title {
  font-size: var(--h3-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.tech-feature__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-1-5);
}

.tech-feature__specs {
  list-style: none;
}

.tech-feature__specs li {
  color: var(--text-light);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.tech-feature__specs li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
}

/* Responsive Design for Services Page */
@media screen and (max-width: 1024px) {
  .service-detail__container,
  .tech-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .tech-feature--reverse {
    direction: ltr;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .service-card,
  .additional-service {
    padding: 1.5rem;
  }
  
  .service-card__icon,
  .additional-service__icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .tech-feature__img {
    height: 250px;
  }
  
  .additional-services__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card__features,
  .additional-service__list,
  .tech-feature__specs {
    font-size: var(--small-font-size);
  }
  
  .tech-feature__img {
    height: 200px;
  }
}


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

/* Emergency Banner */
.emergency-banner {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: var(--white);
  padding: 1.5rem 0;
}

.emergency-banner__content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.emergency-banner__icon {
  font-size: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.emergency-banner__title {
  font-size: 1.25rem;
  font-weight: var(--font-semibold);
  margin-bottom: 0.25rem;
}

.emergency-banner__description {
  opacity: 0.9;
}

.btn--emergency {
  background-color: var(--white);
  color: #dc2626;
  font-weight: var(--font-semibold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn--emergency:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
}

/* Contact Section */
.contact__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

/* Contact Form */
.contact__form-header {
  margin-bottom: var(--mb-2-5);
}

.contact__form-title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.contact__form-subtitle {
  color: var(--text-light);
  line-height: 1.6;
}

.contact__form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

.form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: var(--mb-1-5);
}

.form__field {
  margin-bottom: var(--mb-1-5);
}

.form__label {
  display: block;
  color: var(--text-dark);
  font-weight: var(--font-medium);
  margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: var(--normal-font-size);
  transition: var(--transition);
  background-color: var(--white);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--mb-2);
}

.form__checkbox-input {
  margin-top: 0.25rem;
}

.form__checkbox-label {
  color: var(--text-light);
  line-height: 1.5;
  font-size: var(--small-font-size);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.form__note {
  margin-top: var(--mb-1);
  font-size: var(--small-font-size);
  color: var(--text-light);
  text-align: center;
}

/* Contact Info */
.contact__info {
  background-color: var(--light-bg);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  height: fit-content;
}

.contact__info-header {
  margin-bottom: var(--mb-2);
}

.contact__info-title {
  font-size: var(--h3-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.contact__info-subtitle {
  color: var(--text-light);
}

.contact__details {
  margin-bottom: var(--mb-2-5);
}

.contact__detail {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--mb-2);
  padding-bottom: var(--mb-2);
  border-bottom: 1px solid var(--border-light);
}

.contact__detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact__detail-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact__detail-text {
  color: var(--text-light);
  line-height: 1.6;
}

.contact__link {
  color: var(--primary-blue);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.contact__link:hover {
  color: var(--secondary-blue);
}

.contact__cta {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px solid var(--primary-blue);
}

.contact__cta-title {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact__cta-text {
  color: var(--text-light);
  margin-bottom: var(--mb-1-5);
  font-size: var(--small-font-size);
}

/* Map Section */
.map-section {
  background-color: var(--light-bg);
  padding: 3rem 0;
}

.map__header {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.map__title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.map__subtitle {
  color: var(--text-light);
}

.map__container {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map__placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.map__placeholder-content i {
  font-size: 3rem;
  margin-bottom: var(--mb-1);
  opacity: 0.8;
}

.map__placeholder-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--mb-1);
}

.map__placeholder-content p {
  margin-bottom: var(--mb-1-5);
  opacity: 0.9;
}

/* FAQ Section */
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.faq__question-text {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: var(--font-medium);
  margin: 0;
}

.faq__toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  transition: var(--transition);
}

.faq__item.active .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faq__answer p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Contact Page */
@media screen and (max-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .emergency-banner__content {
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .form__group {
    grid-template-columns: 1fr;
  }
  
  .contact__form,
  .contact__info {
    padding: 1.5rem;
  }
  
  .emergency-banner__content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .map__placeholder {
    height: 300px;
  }
  
  .contact__detail {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .emergency-banner {
    padding: 1rem 0;
  }
  
  .contact__form,
  .contact__info {
    padding: 1rem;
  }
  
  .faq__question {
    padding: 1rem;
  }
  
  .faq__question-text {
    font-size: 1rem;
  }
  
  .map__placeholder {
    height: 250px;
  }
  
  .map__placeholder-content i {
    font-size: 2rem;
  }
}


/* ===== FORM VALIDATION STYLES ===== */
.form__input--error,
.form__select--error,
.form__textarea--error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form__error {
  display: block;
  color: #dc2626;
  font-size: var(--small-font-size);
  margin-top: 0.25rem;
  font-weight: var(--font-medium);
}

.form__message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: var(--mb-1-5);
  font-weight: var(--font-medium);
}

.form__message--success {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form__message--error {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.form__message i {
  font-size: 1.25rem;
}

/* Loading button state */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn:disabled:hover {
  transform: none !important;
}


/* ===== COVERAGE AREAS PAGE STYLES ===== */

/* Primary Coverage Section */
.primary-coverage__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coverage-badge {
  margin-bottom: var(--mb-1);
}

.primary-coverage__title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1-5);
}

.primary-coverage__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-2);
  font-size: 1.125rem;
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--mb-2);
}

.coverage-stat {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-bg);
  border-radius: var(--border-radius);
}

.coverage-stat__number {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.coverage-stat__label {
  color: var(--text-light);
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.coverage-features {
  display: grid;
  gap: 1rem;
}

.coverage-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
}

.coverage-feature i {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.primary-coverage__img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

/* Coverage Map */
.coverage-map__container {
  max-width: 1000px;
  margin: 0 auto;
}

.map-placeholder {
  height: 500px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  margin-bottom: var(--mb-2);
}

.map-placeholder__content i {
  font-size: 4rem;
  margin-bottom: var(--mb-1);
  opacity: 0.8;
}

.map-placeholder__content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--mb-1);
}

.coverage-legend {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.coverage-legend__title {
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.legend-items {
  display: grid;
  gap: 0.75rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.legend-color--primary {
  background-color: var(--primary-blue);
}

.legend-color--secondary {
  background-color: var(--secondary-blue);
}

.legend-color--tertiary {
  background-color: var(--accent-green);
}

/* Coverage Areas Grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.coverage-area {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.coverage-area:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.coverage-area__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--mb-1-5);
  flex-wrap: wrap;
}

.coverage-area__icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.coverage-area__title {
  flex: 1;
  color: var(--text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.coverage-area__badge {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.coverage-area__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.coverage-area__locations {
  list-style: none;
  margin-bottom: var(--mb-1-5);
}

.coverage-area__locations li {
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 1.5rem;
}

.coverage-area__locations li:last-child {
  border-bottom: none;
}

.coverage-area__locations li::before {
  content: '📍';
  position: absolute;
  left: 0;
}

.coverage-area__stats {
  display: grid;
  gap: 0.5rem;
}

.area-stat {
  color: var(--text-light);
  font-size: var(--small-font-size);
}

.area-stat strong {
  color: var(--text-dark);
}

/* Response Times */
.response-times__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.response-time {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
}

.response-time:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.response-time__icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  font-size: 2rem;
  color: var(--primary-blue);
}

.response-time__title {
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.response-time__time {
  font-size: 2rem;
  font-weight: var(--font-bold);
  color: var(--primary-blue);
  margin-bottom: var(--mb-1);
}

.response-time__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.response-time__features {
  list-style: none;
  text-align: left;
}

.response-time__features li {
  color: var(--text-light);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.response-time__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: var(--font-bold);
}

/* Expansion Plans */
.expansion-plans__container {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.expansion-plan {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  position: relative;
}

.expansion-plan::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: -2rem;
  width: 2px;
  background-color: var(--border-light);
}

.expansion-plan:last-child::before {
  display: none;
}

.expansion-plan__year {
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  position: relative;
  z-index: 1;
}

.expansion-plan__title {
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.expansion-plan__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.expansion-plan__goals {
  list-style: none;
}

.expansion-plan__goals li {
  color: var(--text-light);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.expansion-plan__goals li::before {
  content: '🎯';
  position: absolute;
  left: 0;
}

/* CTA Section */
.cta__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
}

.cta__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--mb-2);
  opacity: 0.9;
}

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

/* Responsive Design for Coverage Page */
@media screen and (max-width: 1024px) {
  .primary-coverage__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .coverage-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .expansion-plan {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .expansion-plan::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  
  .coverage-stats {
    grid-template-columns: 1fr;
  }
  
  .coverage-area__header {
    flex-direction: column;
    text-align: center;
  }
  
  .response-times__container {
    grid-template-columns: 1fr;
  }
  
  .map-placeholder {
    height: 300px;
  }
  
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .coverage-area,
  .response-time,
  .expansion-plan {
    padding: 1.5rem;
  }
  
  .coverage-stat {
    padding: 1rem;
  }
  
  .coverage-stat__number {
    font-size: 1.5rem;
  }
  
  .response-time__time {
    font-size: 1.5rem;
  }
  
  .map-placeholder {
    height: 250px;
  }
  
  .map-placeholder__content i {
    font-size: 2.5rem;
  }
}


/* ===== CAREERS PAGE STYLES ===== */

/* Why Join Us Section */
.why-join__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.career-badge {
  margin-bottom: var(--mb-1);
}

.why-join__title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1-5);
}

.why-join__description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--mb-2);
  font-size: 1.125rem;
}

.career-highlights {
  display: grid;
  gap: 1.5rem;
}

.career-highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.career-highlight i {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.25rem;
}

.career-highlight__content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.career-highlight__content p {
  color: var(--text-light);
  line-height: 1.6;
}

.why-join__img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

/* Benefits Grid */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition);
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.benefit__icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  font-size: 2rem;
  color: var(--primary-blue);
}

.benefit__title {
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.benefit__description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Job Cards */
.jobs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.job-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.job-card__header {
  margin-bottom: var(--mb-1-5);
}

.job-card__badge {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

.job-card__title {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.job-card__location {
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--small-font-size);
}

.job-card__content {
  flex: 1;
  margin-bottom: var(--mb-1-5);
}

.job-card__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--mb-1-5);
}

.job-card__requirements {
  list-style: none;
  margin-bottom: var(--mb-1-5);
}

.job-card__requirements li {
  color: var(--text-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--small-font-size);
}

.job-card__requirements li:last-child {
  border-bottom: none;
}

.job-card__requirements li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: var(--font-bold);
}

.job-card__details {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--mb-1-5);
  flex-wrap: wrap;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: var(--small-font-size);
  background-color: var(--light-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}

.job-detail i {
  color: var(--primary-blue);
}

.job-card__actions {
  display: flex;
  gap: 1rem;
}

.job-card__actions .btn {
  flex: 1;
  text-align: center;
}

/* Application Process */
.process__steps {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0;
  bottom: -2rem;
  width: 2px;
  background-color: var(--border-light);
}

.process-step:last-child::before {
  display: none;
}

.process-step__number {
  width: 80px;
  height: 80px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  position: relative;
  z-index: 1;
}

.process-step__title {
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.process-step__description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Application Form */
.application-form__container {
  max-width: 800px;
  margin: 0 auto;
}

.application-form__header {
  text-align: center;
  margin-bottom: var(--mb-2-5);
}

.application-form__title {
  font-size: var(--h2-font-size);
  color: var(--text-dark);
  margin-bottom: var(--mb-1);
}

.application-form__subtitle {
  color: var(--text-light);
  line-height: 1.6;
}

.career-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
}

/* Contact HR */
.contact-hr__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hr__title {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1);
}

.contact-hr__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--mb-2);
  opacity: 0.9;
}

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

.hr-contact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.hr-contact i {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  opacity: 0.8;
}

/* Responsive Design for Careers Page */
@media screen and (max-width: 1024px) {
  .why-join__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .jobs__grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .process-step::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .job-card {
    padding: 1.5rem;
  }
  
  .job-card__actions {
    flex-direction: column;
  }
  
  .job-card__details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .career-form {
    padding: 1.5rem;
  }
  
  .contact-hr__details {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hr-contact {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .benefit,
  .job-card,
  .process-step {
    padding: 1rem;
  }
  
  .benefit__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-step__number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .career-form {
    padding: 1rem;
  }
  
  .jobs__grid {
    grid-template-columns: 1fr;
  }
}


/* ===== ENHANCED ANIMATIONS AND INTERACTIONS ===== */

/* Scroll Reveal Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Animation Classes */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-spin {
    animation: spin 1s linear infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Enhanced Header Styles */
.header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header--scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header--hidden {
    transform: translateY(-100%);
}

/* Enhanced Navigation */
.nav__link {
    position: relative;
    transition: all 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
}

/* Enhanced Card Hover Effects */
.feature-card,
.service-card,
.news-card,
.benefit,
.job-card,
.coverage-area,
.response-time,
.team-member {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.service-card::before,
.news-card::before,
.benefit::before,
.job-card::before,
.coverage-area::before,
.response-time::before,
.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::before,
.service-card:hover::before,
.news-card:hover::before,
.benefit:hover::before,
.job-card:hover::before,
.coverage-area:hover::before,
.response-time:hover::before,
.team-member:hover::before {
    opacity: 1;
}

/* Enhanced Form Styles */
.form__field {
    position: relative;
    margin-bottom: var(--mb-1-5);
}

.form__label {
    position: absolute;
    top: 0.875rem;
    left: 1rem;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background-color: var(--white);
    padding: 0 0.25rem;
}

.form__field--focused .form__label,
.form__input:focus + .form__label,
.form__textarea:focus + .form__label,
.form__select:focus + .form__label {
    transform: translateY(-1.5rem) scale(0.9);
    color: var(--primary-blue);
    font-weight: var(--font-medium);
}

.form__input:not(:placeholder-shown) + .form__label,
.form__textarea:not(:placeholder-shown) + .form__label,
.form__select:not([value=""]) + .form__label {
    transform: translateY(-1.5rem) scale(0.9);
    color: var(--primary-blue);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Testimonials Carousel Enhancement */
.testimonials__container {
    position: relative;
    overflow: hidden;
}

.testimonial {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial:first-child {
    position: relative;
}

.testimonials__indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--mb-1-5);
}

.testimonial__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial__indicator.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* Page Load Animations */
.loaded .hero__title,
.loaded .hero__subtitle,
.loaded .hero__buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loaded .hero__title {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.loaded .hero__subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.loaded .hero__buttons {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Mobile Menu Enhancement */
.nav__menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.show-menu .nav__menu {
    animation: slideInFromBottom 0.3s ease-out;
}

/* Parallax Effects */
.hero,
.page-header {
    position: relative;
    overflow: hidden;
}

.hero::before,
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    pointer-events: none;
}

/* Progress Bars */
.progress-bar {
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Statistics */
.stats__number {
    transition: all 0.3s ease;
    display: inline-block;
}

.stats__item:hover .stats__number {
    transform: scale(1.1);
    color: var(--secondary-blue);
}

/* Micro-interactions */
.feature-card__icon,
.service-card__icon,
.benefit__icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card__icon,
.service-card:hover .service-card__icon,
.benefit:hover .benefit__icon {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced Focus States */
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #f8fafc;
        --text-light: #cbd5e1;
        --white: #1e293b;
        --light-bg: #334155;
        --border-light: #475569;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .form__input,
    .form__textarea,
    .form__select {
        border-width: 2px;
    }
}

