:root {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1a1a;
  --card-bg: #2d2d2d;
  --card-hover: #3d3d3d;
  --text-light: #ffffff;
  --text-muted: #e0e0e0;
  --text-dark: #2c3e50;
  --success-color: #2ecc71;
  --warning-color: #ffd700;
  --info-color: #3498db;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  padding: 1.2rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  font-weight: 800;
  color: var(--primary-color);
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
}

.navbar-brand span {
  color: var(--secondary-color);
  font-weight: 900;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 600;
  margin: 0 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  padding: 0.5rem 0;
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

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

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

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }

  .nav-link {
    margin: 0.5rem 0;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    background-color: rgba(255, 0, 0, 0.05);
  }

  .nav-link::before {
    display: none;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-bg-1.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-bg-1.jpg");
}

.hero-slide:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-bg-2.jpg.png");
}

.hero-slide:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/hero-bg-3.jpg");
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-button {
  background-color: var(--secondary-color);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--secondary-color);
  margin: 0.5rem;
  min-width: 200px;
  text-align: center;
}

.cta-button.outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

.cta-button:hover {
  background-color: transparent;
  border-color: white;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.cta-button.outline:hover {
  background-color: white;
  border-color: white;
  color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
    padding: 0 1rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    min-width: 180px;
    margin: 0.25rem;
  }
}

.hero-slider-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.hero-slider-nav button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-slider-nav button:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: scale(1.1);
}

.hero-slider-nav button i {
  font-size: 1.2rem;
}

.hero-slider-nav .slider-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.hero-slider-nav .slider-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-nav .slider-dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.section-title p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  opacity: 0.8;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* Override for dark sections */
.testimonials .section-title h2,
.service-areas .section-title h2,
.contact-info .section-title h2 {
  color: var(--text-light) !important;
}

.testimonials .section-title p,
.service-areas .section-title p,
.contact-info .section-title p {
  color: var(--text-muted) !important;
}

/* Services - Light Background Section */
.services,
.about,
.faq {
  background-color: var(--light-bg);
}

.services .section-title h2,
.about .section-title h2,
.faq .section-title h2 {
  color: var(--primary-color);
}

.services .section-title p,
.about .section-title p,
.faq .section-title p {
  color: var(--primary-color);
  opacity: 0.8;
}

/* Service Cards in Light Section */
.services .service-card,
.about .service-card {
  background: white;
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.services .service-card h3,
.about .service-card h3 {
  color: var(--primary-color);
}

.services .service-card p,
.about .service-card p {
  color: var(--text-dark);
  opacity: 0.8;
}

.services .service-features li,
.about .service-features li {
  color: var(--text-dark);
  opacity: 0.8;
}

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

.service-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before,
.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-image {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.service-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.6),
    rgba(52, 152, 219, 0.6)
  );
  opacity: 0;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-image::before {
  opacity: 0.4;
}

.service-image img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.service-card:hover .service-image img {
  transform: scale(1.1) rotate(1deg);
}

.service-card h3 {
  color: var(--text-light);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card p {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: var(--text-light);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

/* Service Features Enhanced */
.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.4s ease;
}

.service-features li::before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  transition: all 0.4s ease;
}

.service-card:hover .service-features li {
  color: var(--text-light);
  transform: translateX(5px);
}

.service-card:hover .service-features li::before {
  color: var(--accent-color);
  transform: scale(1.2);
}

.service-features li:nth-child(1) {
  transition-delay: 0.05s;
}

.service-features li:nth-child(2) {
  transition-delay: 0.1s;
}

.service-features li:nth-child(3) {
  transition-delay: 0.15s;
}

.service-features li:nth-child(4) {
  transition-delay: 0.2s;
}

.service-features li:nth-child(5) {
  transition-delay: 0.25s;
}

/* Service CTA Button Enhanced */
.service-cta {
  margin-top: 2rem;
}

.service-cta .btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.service-cta .btn:hover {
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.4);
  border-color: transparent;
}

.service-cta .btn:hover::before {
  width: 100%;
}

.service-cta .btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -2;
  background: radial-gradient(circle at center, rgba(231, 76, 60, 0.3) 0%, transparent 80%);
  transition: opacity 0.4s ease;
}

.service-cta .btn:hover::after {
  opacity: 1;
}

/* Service Areas */
.service-areas {
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.service-areas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.05) 0%,
    rgba(26, 26, 26, 0.05) 100%
  );
  z-index: 1;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.area-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
  position: relative;
  overflow: hidden;
  color: var(--text-light);
}

.area-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--accent-color)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.area-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.area-item span {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.area-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.25);
}

.area-item:hover::before {
  opacity: 0.8;
}

.area-item:hover::after {
  transform: scaleX(1);
}

.area-item:hover span {
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: scale(1.05);
}

/* Modern Testimonial Grid Layout */
.testimonials {
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.05) 0%,
    rgba(52, 152, 219, 0.05) 100%
  );
  pointer-events: none;
}

.testimonials-container {
  position: relative;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

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

.testimonial-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2), transparent 70%);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover::before {
  opacity: 1;
  top: -50%;
  left: -50%;
}

.testimonial-quote {
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 4rem;
  font-family: "Georgia", serif;
  color: var(--secondary-color);
  opacity: 0.15;
  line-height: 1;
  z-index: 0;
  transition: all 0.5s ease;
}

.testimonial-card:hover .testimonial-quote {
  opacity: 0.25;
  transform: scale(1.2) translateY(-10px);
  color: var(--accent-color);
}

.testimonial-text {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
  font-style: italic;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-text {
  color: var(--text-light);
  transform: translateY(-3px);
}

.testimonial-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-footer {
  border-top-color: rgba(52, 152, 219, 0.3);
}

.testimonial-author {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
  color: var(--accent-color);
}

.testimonial-author::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  transform: scaleX(0.5);
  transform-origin: left;
  transition: all 0.4s ease;
  opacity: 0.5;
}

.testimonial-card:hover .testimonial-author::after {
  transform: scaleX(1);
  opacity: 1;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
  transform: rotate(10deg) scale(1.1);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-rating i {
  transition: all 0.3s ease;
}

.testimonial-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-date {
  color: var(--text-light);
}

.testimonial-date i {
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-date i {
  color: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .testimonial-card {
    padding: 2rem;
  }
}

/* FAQ */
.faq-item {
  margin-bottom: 1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Contact */
.contact-info {
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.05) 0%,
    rgba(26, 26, 26, 0.05) 100%
  );
  z-index: 1;
}

.contact-item {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 2;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(231, 76, 60, 0.1),
    rgba(52, 152, 219, 0.1)
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.contact-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.2);
}

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

.contact-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.contact-item:hover h4 {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.contact-item p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  transition: all 0.3s ease;
}

.contact-item:hover p {
  color: var(--text-light);
}

.contact-item .btn {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.contact-item .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: all 0.6s ease;
  z-index: 0;
}

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

.contact-item .btn-outline-danger:hover {
  background: linear-gradient(45deg, var(--secondary-color), #c0392b);
  border-color: transparent;
  color: var(--text-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.contact-item .btn-outline-primary:hover {
  background: linear-gradient(45deg, var(--accent-color), #2980b9);
  border-color: transparent;
  color: var(--text-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
  .contact-item {
    min-height: auto;
    padding: 2rem;
  }

  .contact-item .contact-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contact-item .btn {
    width: 100%;
    min-width: 100%;
  }
}

/* Footer */
footer {
  background-color: var(--card-bg);
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 0;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }

  .area-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .contact-item {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }

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

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--secondary-color),
    var(--accent-color)
  );
  transform-origin: 0%;
  z-index: 1001;
  display: none;
  border-radius: 2px;
}

.scroll-progress.visible {
  display: block;
}

/* FAQ Accordion Styles */
.accordion-item {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: var(--card-hover);
}

.accordion-button {
  color: var(--text-light);
  background-color: transparent;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e74c3c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.accordion-item:hover .accordion-body {
  color: var(--text-light);
}

.accordion-button:hover {
  color: var(--secondary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(231, 76, 60, 0.25);
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px solid rgba(231, 76, 60, 0.1);
}

/* Dark Sections */
.testimonials,
.service-areas,
.contact-info {
  background-color: var(--dark-bg) !important;
  color: var(--text-light) !important;
}

/* Cards */
.service-card,
.testimonial-card,
.contact-item,
.area-item {
  background: var(--card-bg) !important;
  color: var(--text-light) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.testimonial-card:hover,
.contact-item:hover,
.area-item:hover {
  background: var(--card-hover) !important;
}

/* Section Titles in Dark Sections */
.testimonials .section-title h2,
.service-areas .section-title h2,
.contact-info .section-title h2 {
  color: var(--text-light) !important;
}

.testimonials .section-title p,
.service-areas .section-title p,
.contact-info .section-title p {
  color: var(--text-muted) !important;
}

/* Service Cards */
.service-card h3,
.contact-item h4,
.testimonial-author {
  color: var(--text-light) !important;
}

.service-card p,
.contact-item p,
.testimonial-date,
.service-features li {
  color: var(--text-muted) !important;
}

.service-card:hover .service-features li {
  color: var(--text-light);
}

/* Contact Items */
.contact-item h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Service Areas */
.area-item {
  background: var(--card-bg);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.area-item:hover {
  background: var(--card-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.area-item span {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.area-item:hover span {
  color: var(--secondary-color);
}

/* Buttons in Dark Sections */
.dark-section .btn-outline-primary {
  color: var(--text-light);
  border-color: var(--text-light);
}

.dark-section .btn-outline-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-light);
}

/* Icons in Dark Sections */
.dark-section .service-icon,
.dark-section .contact-icon {
  color: var(--secondary-color);
}

/* Links in Dark Sections */
.dark-section a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.dark-section a:hover {
  color: var(--secondary-color);
}

/* Testimonial Cards */
.testimonial-text {
  color: var(--text-light) !important;
}

.testimonial-author {
  color: var(--text-light) !important;
}

.testimonial-date {
  color: var(--text-muted) !important;
}

/* Contact Section */
.contact-info .btn-outline-danger {
  color: var(--text-light);
  border-color: var(--text-light);
}

.contact-info .btn-outline-danger:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-light);
}
