/* Smartspanner CMMS - Static Site CSS
   Consolidated from original PHP site
   Colors: Primary #feb900 (yellow), Secondary #52565e (gray)
-------------------------------------------- */

/* CSS Variables */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
  scroll-behavior: smooth;
}

/* Base Styles */
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  margin-top: 0;
}

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
}

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

.img-fluid {
  max-width: 100%;
  height: auto;
}

.d-flex {
  display: flex;
}

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

.justify-content-between {
  justify-content: space-between;
}

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-8, .col-md-6 {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    width: 16.666%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.333%;
  }
  .col-lg-5 {
    width: 41.666%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-8 {
    width: 66.666%;
  }
}

.gy-4 > * {
  margin-bottom: 24px;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: #e5a700;
  border-color: #e5a700;
  color: #fff;
}

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

.btn-secondary:hover {
  background-color: #3d4147;
  color: #fff;
}

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

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

/* Header */
.header {
  z-index: 997;
  position: absolute;
  padding: 30px 0;
  top: 0;
  left: 0;
  right: 0;
}

.header.scrolled {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
}

.header .logo img {
  max-height: 40px;
}

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

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  padding: 10px 0 10px 28px;
}

.navbar a {
  display: flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  transition: 0.3s;
  padding: 0 3px;
}

.navbar a:hover,
.navbar .active {
  color: #fff;
}

.navbar .dropdown ul {
  display: none;
  position: absolute;
  left: 28px;
  top: 100%;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  min-width: 200px;
  z-index: 99;
}

.navbar .dropdown:hover > ul {
  display: block;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--color-default);
}

.navbar .dropdown ul a:hover {
  color: var(--color-primary);
}

.navbar .dropdown-indicator {
  font-size: 10px;
  margin-left: 5px;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  
  .navbar.active {
    right: 0;
  }
  
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar > ul > li {
    padding: 10px 20px;
    width: 100%;
  }
  
  .navbar a {
    padding: 10px 0;
  }
  
  .navbar .dropdown ul {
    position: static;
    display: none;
    background: transparent;
    box-shadow: none;
    padding-left: 20px;
  }
  
  .navbar .dropdown.active > ul {
    display: block;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .mobile-nav-show {
    display: block;
  }
  
  .mobile-nav-hide {
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }
  
  .mobile-nav-active .mobile-nav-show {
    display: none;
  }
  
  .mobile-nav-active .mobile-nav-hide {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero .carousel {
  position: absolute;
  inset: 0;
  background-color: #000;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero .carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.hero .carousel-item.fade-out {
  opacity: 0;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 50px;
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
  background: transparent;
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
  
  .hero .info {
    padding: 0 20px;
  }
}

/* Sections */
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3035;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  max-width: 60%;
  margin: 0 auto;
}

/* Alt Services Section */
.alt-services .img-bg {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/* Get Started Section */
.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content h4 {
  font-size: 20px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.get-started ul {
  list-style: none;
  padding: 0;
}

.get-started ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.get-started ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--color-primary);
}

/* Industries Cards */
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #eeeeee;
  display: flex;
  flex-wrap: wrap;
}

.constructions .card-item .card-bg {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

@media (min-width: 1200px) {
  .constructions .card-item .card-bg {
    width: 40%;
    min-height: 250px;
  }
  
  .constructions .card-item .card-body {
    width: 60%;
  }
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.constructions .card-item h4 a {
  color: var(--color-secondary);
}

.constructions .card-item h4 a:hover {
  color: var(--color-primary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/* Services Section */
.services .service-item {
  padding: 40px;
  background: #ffffff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: white;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -5px;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebedef;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/* Features Tabs */
.features .nav-tabs {
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.features .nav-link {
  padding: 15px;
  transition: 0.3s;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e5e8;
  background: transparent;
  flex: 1;
  min-width: 150px;
}

.features .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.features .nav-link:hover,
.features .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane {
  display: none;
}

.features .tab-pane.active {
  display: block;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 1.25rem;
  padding-right: 4px;
  color: var(--color-primary);
}

/* Testimonials */
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 0 15px 30px 50px;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
  color: #ffc107;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto;
}

/* Pricing */
.pricing .box {
  padding: 30px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.3);
  background: #ffffff;
  height: 100%;
  border-top: 4px solid var(--color-secondary);
  border-radius: 5px;
}

.pricing .box.featured {
  border-top-color: var(--color-primary);
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 25px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 48px;
  color: var(--color-secondary);
  font-weight: 400;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: var(--color-primary);
  font-size: 15px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: var(--color-secondary);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  position: absolute;
  left: 0;
  color: #000;
  font-size: 15px;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid var(--color-primary);
  background: transparent;
}

.pricing .buy-btn:hover,
.pricing .featured .buy-btn {
  background: var(--color-primary);
  color: #ffffff;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #333;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

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

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  content: "/";
  padding-right: 10px;
  color: #fff;
}

@media (max-width: 768px) {
  .breadcrumbs h2 {
    font-size: 36px;
  }
}

/* About Section */
.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838d93;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

/* Contact Section */
.contact .contact-info-box,
.contact .contact-form-box {
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact .contact-info-box h3,
.contact .contact-form-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.contact .info-item {
  margin-top: 25px;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  font-size: 20px;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
  margin-right: 15px;
}

.contact .info-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .info-item p a {
  color: var(--color-default);
}

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

.contact .contact-form .form-group {
  margin-bottom: 20px;
}

.contact .contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact .contact-form input,
.contact .contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 4px;
}

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

.contact .contact-form small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #6c757d;
}

.contact .contact-form .radio-label {
  display: block;
  margin-bottom: 8px;
  font-weight: normal;
  cursor: pointer;
}

.contact .contact-form .radio-label input {
  width: auto;
  margin-right: 8px;
}

/* Forms */
.php-email-form {
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
}

.php-email-form .form-group {
  margin-bottom: 20px;
}

.php-email-form input,
.php-email-form textarea,
.php-email-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
}

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

.php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
  cursor: pointer;
}

.php-email-form button[type=submit]:hover {
  background: #e5a700;
}

/* Blog */
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  overflow: hidden;
}

.recent-blog-posts .post-item .post-img {
  position: relative;
  overflow: hidden;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
  width: 100%;
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item:hover .post-title {
  color: var(--color-primary);
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #838d93;
  transition: 0.3s;
}

.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

/* FAQ */
.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 15px;
}

.faq .faq-list .faq-question {
  display: block;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-secondary);
  transition: 0.3s;
}

.faq .faq-list .faq-question:hover {
  color: var(--color-primary);
}

.faq .faq-list .faq-answer {
  display: none;
  padding-top: 15px;
}

.faq .faq-list li.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: #2e3035;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  padding: 8px 0;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

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

.footer ul li i {
  margin-right: 8px;
  color: var(--color-primary);
}

.footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

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

/* Scroll to top */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.scroll-top:hover {
  background: #e5a700;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Service Details */
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d4d6da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #dde6eb;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a:hover,
.service-details .services-list a.active {
  border-color: var(--color-primary);
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details ul {
  list-style: none;
  padding: 0;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/* Inner Pages */
.inner-page {
  padding: 60px 0;
}

.inner-page h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.inner-page p {
  line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-header p {
    max-width: 100%;
  }
  
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px;
  }
}
