/********** Template CSS **********/
:root {
  --primary: #e25822; /* Orange-red for fire/flame */
  --secondary: #ff8c42; /* Light orange for flame accents */
  --light: #f8f8f8;
  --dark: #1e1e1e; /* Dark charcoal for soot/ash */
  --darker: #121212; /* Darker shade for chimney interior */
  --gray: #494949;
  --charcoal: #2a2a2a; /* Medium dark for smoke */
}

body {
  background-color: var(--light);
  color: #4b5563;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

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

/* Section background alternating styles */
.bg-dark-section {
  background-color: var(--dark);
  color: #fff;
}

.bg-darker-section {
  background-color: var(--darker);
  color: #fff;
}

.bg-charcoal-section {
  background-color: var(--charcoal);
  color: #fff;
}

/* Service Cards - Dark Theme */
.modern-service-card {
  position: relative;
  padding-top: 70px;
  background-color: var(--dark);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.modern-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(226, 88, 34, 0.25);
  border-bottom: 4px solid var(--primary);
}

.service-card-body {
  padding: 60px 30px 30px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(226, 88, 34, 0.3);
  transition: all 0.4s ease;
}

.service-card-body h5 {
  color: var(--light);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card-body h5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: all 0.3s ease;
}

.service-card-body p {
  color: #c5c5c5;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.service-btn:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(226, 88, 34, 0.3);
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

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

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 43, 0.7);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  left: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  top: 50%;
  right: -55px;
  margin-top: -1px;
  background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
  display: none;
}

/*** Service ***/
.service-item {
  background-color: var(--dark);
  box-shadow: 0 10px 30px rgba(15, 23, 43, 0.1);
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--primary);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(226, 88, 34, 0.15);
}

.service-item .service-icon {
  margin: 0 auto 30px auto;
  width: 65px;
  height: 65px;
  transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {
  background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)),
    url(../img/carousel-2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-carousel {
  padding-left: 65px;
  padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
  padding: 30px;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: #ffffff;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
  transition: 0.5s;
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  margin-top: 0;
  padding-top: 80px;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

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

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/*** Custom Chimney Service Styles ***/
.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.accordion-item {
  background-color: var(--dark);
  border: 1px solid #333;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--dark);
  color: var(--light);
  font-weight: 600;
  padding: 20px 25px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(226, 88, 34, 0.1);
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(226, 88, 34, 0.25);
  border-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='%23fff'%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-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='%23e25822'%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 {
  background-color: var(--charcoal);
  padding: 20px 25px;
  color: #c5c5c5;
}

/* Full-width layout fixes */
.main-wrapper {
  overflow-x: hidden;
  width: 100%;
}

/* Modern Service Cards - New Design */
.modern-service-card {
  position: relative;
  padding-top: 70px;
  background-color: var(--dark);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.modern-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(226, 88, 34, 0.25);
  border-bottom: 4px solid var(--primary);
}

.service-card-body {
  padding: 60px 30px 30px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(226, 88, 34, 0.3);
  transition: all 0.4s ease;
}

.modern-service-card:hover .service-card-icon {
  border-radius: 50%;
  transform: translateX(-50%) scale(1.1) rotate(10deg);
}

.service-card-icon i {
  font-size: 38px;
  color: #fff;
}

.service-card-body h5 {
  color: var(--light);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  transition: all 0.3s ease;
}

.service-card-body h5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: all 0.3s ease;
}

.modern-service-card:hover .service-card-body h5 {
  color: var(--primary);
}

.modern-service-card:hover .service-card-body h5:after {
  width: 80px;
}

.service-card-body p {
  color: #c5c5c5;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.service-btn:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(226, 88, 34, 0.3);
}

/* Modern Testimonial Styles */
.testimonial-carousel {
  padding: 20px 0;
}

.testimonial-item {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 10px !important;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.client-img {
  width: 60px;
  height: 60px;
  box-shadow: 0 5px 15px rgba(254, 161, 22, 0.2);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .logo-text {
    font-size: 1.5rem;
  }

  .modern-service-card {
    margin-bottom: 60px;
  }

  .service-card-body {
    padding-top: 70px;
  }

  .testimonial-item {
    padding: 15px !important;
  }
}

/* Footer adjustments for full-width */
.footer {
  position: relative;
  margin-top: 0;
  padding-top: 80px;
}

/* Service overlay for main service item */
.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 43, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.service-item:hover .service-overlay {
  opacity: 1;
}

.btn-outline-light.rounded-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-outline-light.rounded-circle:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Main service item */
.service-item {
  background-color: var(--dark);
  box-shadow: 0 10px 30px rgba(15, 23, 43, 0.1);
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--primary);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(226, 88, 34, 0.15);
}

.main-service-content {
  padding: 2rem !important;
  color: var(--light);
}

.main-service-content h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  color: var(--light);
}

.main-service-content h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.main-service-content .btn-primary {
  box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
  transition: all 0.3s ease;
}

.main-service-content .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 86, 219, 0.4);
}

/* Work Process Styles */
.process-item {
  position: relative;
  padding: 40px 30px;
  border-radius: 15px;
  background-color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  height: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.process-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(226, 88, 34, 0.2);
}

.process-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  margin: 0 auto 30px;
  z-index: 1;
}

.process-icon i {
  font-size: 36px;
  color: #fff;
}

.process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--primary);
}

.process-item h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light);
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

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

.process-item p {
  margin-bottom: 0;
  color: #c5c5c5;
  line-height: 1.6;
}

/* Features Styles */
.feature-card {
  display: flex;
  align-items: flex-start;
  padding: 30px;
  border-radius: 15px;
  background-color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transition: all 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(226, 88, 34, 0.2);
}

.feature-card:hover::after {
  width: 100%;
  opacity: 0.05;
}

.feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  color: #fff;
  font-size: 24px;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 5px 15px rgba(226, 88, 34, 0.3);
  border-radius: 50%;
  transform: rotate(10deg);
}

.feature-content {
  flex-grow: 1;
  padding-top: 5px;
}

.feature-content h5 {
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-content h5 {
  color: var(--primary);
}

.feature-content p {
  margin-bottom: 0;
  color: #c5c5c5;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Special Offers Styles */
.offer-card {
  position: relative;
  padding: 50px 30px 40px;
  border-radius: 15px;
  background-color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  margin-bottom: 15px;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: -1;
}

.offer-card.featured {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(226, 88, 34, 0.25);
  border: 2px solid rgba(226, 88, 34, 0.1);
}

.offer-card.featured::before {
  height: 8px;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(226, 88, 34, 0.25);
}

.offer-card:hover .offer-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 20px rgba(226, 88, 34, 0.3);
}

.offer-card:hover .btn {
  padding-left: 30px;
  padding-right: 30px;
  box-shadow: 0 5px 15px rgba(226, 88, 34, 0.3);
}

.offer-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary);
  color: white;
  padding: 5px 40px;
  font-size: 14px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 2;
}

.offer-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  transition: all 0.4s ease;
}

.offer-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-title {
  color: var(--primary);
}

.offer-description {
  color: #c5c5c5;
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.offer-price {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.original-price {
  font-size: 18px;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.offer-card .btn {
  margin-top: auto;
  transition: all 0.4s ease;
  font-weight: 600;
}

/* Fix for service cards in the services section */
#services .row .col-lg-4,
#services .row .col-md-6 {
  margin-bottom: 30px;
}

/* Logo styling */
.navbar-brand img {
  max-height: 100px;
  height: auto;
  width: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .navbar-brand img {
    max-height: 70px;
  }
}

.footer img.logo {
  max-height: 120px;
  width: auto;
}

.logo-container {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container-mobile {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .logo-container-mobile {
    max-width: 120px;
  }
}
