/* Maintenance Page Specific Styles */

/* Reset and base styles for maintenance page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top bar styles */
.top-bar {
  background-color: #4a90e2;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar a{
 text-decoration: none;
  color: white;
}


.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-info,
.social-info {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-info i,
.social-info i {
  font-size: 16px;
  flex-shrink: 0;
}

/* Header styles */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  color: #4a90e2;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #2a6cba;
}

.nav-list a.active {
  color: #ff6b35;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #4a90e2;
  cursor: pointer;
}

/* Maintenance Section Styles */
.maintenance {
  background-color: white;
  
}

/* Dynamic slideshow header */
.maintenance-hero {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.maintenance-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.maintenance-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.maintenance-slide.active {
  opacity: 1;
}

.maintenance-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slide images container */
.slide-images {
  display: flex;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.slide-images img {
  flex: 1;
  width: calc(50% - 5px);
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.slide-images img:hover {
  transform: scale(1.02);
}

/* Responsive adjustments for slide images */
@media (max-width: 768px) {
  .slide-images {
    flex-direction: column;
    gap: 8px;
  }

  .slide-images img {
    width: 100%;
    height: calc(50% - 4px);
  }
}

@media (max-width: 480px) {
  .slide-images {
    gap: 5px;
  }

  .slide-images img {
    height: calc(50% - 2.5px);
    border-radius: 6px;
  }
}

/* Overlay for better text readability */
.maintenance-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

/* Main content styles */
.maintenance-content {
  text-align: center;
}

.maintenance-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: #333;
  margin-bottom: 50px;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
}

.maintenance-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: #ff6b35;
  border-radius: 2px;
}

.maintenance-description {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #555;
  max-width: 950px;
  margin: 0 auto 80px auto;
  text-align: justify;
  padding: 0 20px;
}

/* Guarantee section */
.guarantee-section {
  margin-bottom: 100px;
  padding: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border-left: 6px solid #4a90e2;
}

.guarantee-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 400;
}

.guarantee-subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  color: #4a90e2;
  font-weight: 400;
}

/* Benefits section */
.benefits-section {
  margin-bottom: 100px;
}

.benefits-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 60px;
  font-weight: 400;
  position: relative;
}

.benefits-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #4a90e2;
  border-radius: 2px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 2rem;
  font-weight: 400;
  font-family: "bebas Neue", sans-serif;
  color: #333;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.benefit-item:hover {
  background-color: #e9ecef;
  border-left-color: #4a90e2;
  transform: translateX(5px);
}

.benefit-item i {
  color: #4a90e2;
  font-size: 1.8rem;
  flex-shrink: 0;
  padding: 10px;
}

/* Gallery Carousel Styles */
.maintenance-gallery {
  margin: 80px 0;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
}

.gallery-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
  padding: 0 10px;
}

.gallery-slide {
  flex: 0 0 280px;
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-slide:hover img {
  transform: scale(1.08);
}

.gallery-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-slide:hover::after {
  opacity: 1;
}

/* Gallery navigation buttons */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #4a90e2 0%, #2a6cba 100%);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.gallery-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.gallery-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}

.gallery-btn-prev {
  left: 20px;
}

.gallery-btn-next {
  right: 20px;
}

/* Services Details Section */
.services-details {
  margin-top: 100px;
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 400;
  position: relative;
}

.services-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background-color: #ff6b35;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-top-color: #4a90e2;
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #4a90e2 0%, #2a6cba 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2.2rem;
  color: white;
}

.service-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
}

.service-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Contact CTA section */
.contact-cta {
  background: linear-gradient(135deg, #4a90e2 0%, #2a6cba 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin-top: 80px;
}

.contact-cta h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-button {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.contact-button:hover {
  background-color: #e55a2b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Enhanced Footer */
.footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 0 30px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  font-family: "Bebas Neue", sans-serif;
  color: white;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-section h3 {
  font-size: 1.8rem;
  color: #4a90e2;
}

.footer-section h4 {
  font-size: 1.4rem;
}

.footer-section p {
  color: #bdc3c7;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #4a90e2;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .maintenance-hero {
    height: 350px;
  }

  .maintenance-title {
    font-size: 3rem;
  }

  .gallery-slide {
    flex: 0 0 240px;
    height: 180px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 20px;
  }

  .nav-list.active {
    display: flex;
  }

  .maintenance-hero {
    height: 500px;
    margin-bottom: 50px;
  }

  .maintenance-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .maintenance-description {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
  }

  .guarantee-section {
    margin-bottom: 60px;
    padding: 30px 20px;
  }

  .guarantee-title,
  .guarantee-subtitle {
    font-size: 1.8rem;
  }

  .benefits-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .benefits-section {
    margin-bottom: 60px;
  }

  .benefits-list {
    text-align: center;
  }

  .benefit-item {
    justify-content: center;
    font-size: 1.5rem;
    padding: 15px;
  }

  .benefit-item i {
    font-size: 1.5rem;
  }

  .gallery-slide {
    flex: 0 0 200px;
    height: 160px;
  }

  .gallery-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .gallery-btn-prev {
    left: -25px;
  }

  .gallery-btn-next {
    right: -25px;
  }

  .services-details {
    padding: 50px 20px;
    margin-top: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .service-card {
    padding: 30px 20px;
  }

  .contact-cta {
    padding: 60px 0;
  }

  .contact-cta h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .maintenance-hero {
    height: 400px;
    margin-bottom: 40px;
  }

  .maintenance-title {
    font-size: 2rem;
  }

  .maintenance-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .benefits-title {
    font-size: 1.8rem;
  }

  .guarantee-title,
  .guarantee-subtitle {
    font-size: 1.5rem;
  }

  .guarantee-section {
    padding: 20px 15px;
  }

  .benefit-item {
    font-size: 1.5rem;
    padding: 12px;
  }

  .gallery-slide {
    flex: 0 0 160px;
    height: 130px;
  }

  .gallery-btn-prev {
    left: -20px;
  }

  .gallery-btn-next {
    right: -20px;
  }

  .services-details {
    padding: 40px 15px;
  }

  .services-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-icon i {
    font-size: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }

  .contact-cta h2 {
    font-size: 1.8rem;
  }

  .contact-cta p {
    font-size: 1rem;
  }

  .contact-button {
    padding: 15px 35px;
    font-size: 1rem;
  }

  .gallery-btn-prev {
  left: 30px;
}

.gallery-btn-next {
  right: 30px;
}
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations */
.maintenance-content {
  animation: fadeInUp 0.8s ease-out;
}

.benefit-item {
  animation: slideInLeft 0.6s ease-out;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.1s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.2s;
}

.benefit-item:nth-child(4) {
  animation-delay: 0.3s;
}

.benefit-item:nth-child(5) {
  animation-delay: 0.4s;
}

.service-card {
  animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
  animation-delay: 0.1s;
}

.service-card:nth-child(3) {
  animation-delay: 0.2s;
}

.service-card:nth-child(4) {
  animation-delay: 0.3s;
}
