/* Litho - The Multipurpose HTML5 Template */

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #e74c3c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #c0392b;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: #e74c3c;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.logo span {
  color: #e74c3c;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #e74c3c;
}

/* Hero Section */
.hero {
  background-image: url("https://public.youware.com/users-website-assets/prod/b74f6b95-d7b7-48f1-8994-07931aa3d1b0/rs=h:1000,cg:true");
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  color: #fff;
  margin-top: 80px;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo {
  margin-bottom: 20px;
}

.hero-logo img {
  max-height: 150px;
  width: auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* About Section */
.about {
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  margin-bottom: 15px;
}

/* Gallery Section */
.gallery {
  background-color: #f9f9f9;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  background-color: #fff;
}

.service-item {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item h3 {
  font-size: 1.5rem;
  margin: 20px 0 15px;
}

.service-item p {
  margin-bottom: 20px;
}

.service-item .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 20px;
}

/* Service Category Styles */
.service-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.category-subtitle {
  text-align: center;
  margin-bottom: 30px;
  color: #777;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 10px;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.service-card p em {
  font-style: italic;
  color: #888;
}

/* Google Reviews Section */
.testimonials {
  background-color: #f9f9f9;
}

.google-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-info {
  text-align: center;
  margin-bottom: 30px;
}

.business-info h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.business-address {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.business-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: all 0.3s ease;
}

.business-link:hover h3 {
  color: #e74c3c;
}

.business-link:hover .rating-summary {
  transform: translateY(-3px);
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.stars {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}

.star-rating {
  color: #e74c3c;
  font-size: 24px;
  letter-spacing: 3px;
}

.rating-text {
  font-size: 1.2rem;
}

.rating-number {
  font-weight: bold;
  color: #e74c3c;
  margin-right: 5px;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  transform: scale(1.2);
}

.carousel-arrow:hover .arrow-svg {
  color: #c0392b;
}

.arrow-svg {
  transition: color 0.3s ease;
  color: #e74c3c;
}

.reviews-carousel {
  width: calc(100% - 80px);
  overflow: hidden;
  position: relative;
  margin: 0 10px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-item {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 0 8px;
  min-width: 280px;
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.review-item:hover {
  transform: translateY(-10px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.reviewer-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.review-stars {
  color: #e74c3c;
}

.review-text {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
  flex: 1;
}

.review-date {
  font-size: 0.85rem;
  color: #777;
  text-align: right;
  margin-top: auto;
}

.google-link {
  margin-top: 20px;
  text-align: center;
}

.google-link a {
  color: #e74c3c;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.google-link a:hover {
  color: #c0392b;
}

/* Contact Section */
.contact {
  background-color: #fff;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-info .info-item i {
  margin-right: 10px;
  color: #e74c3c;
}

.contact-form {
  flex: 1;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Hours Section */
.hours {
  background-color: #f9f9f9;
}

.hours-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hours-table {
  width: 100%;
  margin-top: 30px;
}

.hours-table tr {
  border-bottom: 1px solid #ddd;
}

.hours-table td {
  padding: 15px;
}

.hours-table tr:last-child {
  border-bottom: none;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #e74c3c;
  bottom: -10px;
  left: 0;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #e74c3c;
}

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

/* Animation for elements */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

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

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-item {
    flex: 0 0 calc(50% - 16px);
    margin: 0 6px;
    padding: 18px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  nav ul {
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 5px 15px;
  }

  .hero {
    margin-top: 140px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-logo img {
    max-height: 100px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

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

  .review-item {
    flex: 0 0 calc(100% - 16px);
    min-width: 260px;
    margin: 0 5px;
    padding: 15px;
  }

  .reviews-carousel {
    width: calc(100% - 70px);
    margin: 0 5px;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: #fff;
  margin: 50px auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  position: relative;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #e74c3c;
}

.modal h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

#booking-service-details {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}

.service-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.service-price {
  font-size: 1.3rem;
  color: #e74c3c;
  font-weight: bold;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1.5rem;
}

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