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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: #f8f9fa;
}

.header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  padding: 1.2rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav__links a:hover {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(52,152,219,0.6)), url('attached_assets/logo-png.png');
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  margin-top: 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 4px 8px rgba(0,0,0,0.5);
  z-index: 1;
  position: relative;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  z-index: 1;
  position: relative;
}

.services {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.95), rgba(236, 240, 241, 0.95)), url('attached_assets/Washed with High-Pressure Foam Spray.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service__card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(52,152,219,0.1);
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(52,152,219,0.2);
}

.service__card h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.service__card p {
  color: #7f8c8d;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0;
  color: #27ae60;
  text-shadow: 0 2px 4px rgba(39,174,96,0.2);
}

.booking {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95)), url('attached_assets/image_1739425321746.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.booking h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  color: #2c3e50;
  font-weight: 700;
  position: relative;
}

.booking h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #27ae60, #229954);
  border-radius: 2px;
}

.booking__form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.booking__form input,
.booking__form select,
.booking__form textarea {
  padding: 1rem 1.5rem;
  border: 2px solid #ecf0f1;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: inherit;
  resize: vertical;
}

.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
  outline: none;
  border-color: #3498db;
  background: white;
  box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.button:hover::before {
  left: 100%;
}

.button_action_book {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 1rem 2rem;
  width: auto;
  margin: 1rem auto;
  display: block;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(52,152,219,0.3);
  animation: pulse 3s infinite;
}

.button_action_book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52,152,219,0.4);
}

.button_action_confirm {
  background: linear-gradient(135deg, #27ae60, #229954);
  color: white;
  box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.button_action_confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(39,174,96,0.4);
}

.button_action_details {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  margin: 1.5rem auto 0;
  width: auto;
  padding: 0.8rem 2rem;
  text-decoration: none;
  text-align: center;
  display: block;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52,152,219,0.2);
}

.button_action_details:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52,152,219,0.3);
}

.service-details {
  padding: 140px 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-details h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
}

.service-details h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.details-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  margin-top: 2rem;
  border: 1px solid rgba(52,152,219,0.1);
}

.details-content h2 {
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}

.details-content ul {
  list-style-type: none;
  padding: 1.5rem 0;
}

.details-content li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  color: #34495e;
}

.details-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.media-card {
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.media-card:hover {
  transform: translateY(-5px);
}

.media-card p {
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}

.media-image, .media-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-video {
  background: #000;
}

.price-details {
  font-size: 2rem;
  font-weight: 700;
  color: #27ae60;
  margin: 2rem 0;
  text-align: center;
  text-shadow: 0 2px 4px rgba(39,174,96,0.2);
}

.duration {
  text-align: center;
  color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3498db;
}

.contact-info p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
}

.contact-info i {
  color: #3498db;
  width: 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  gap: 0.8rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.social-link:hover {
  background: rgba(52,152,219,0.2);
  transform: translateX(5px);
}

.social-icon {
  width: 28px;
  height: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: #bdc3c7;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    z-index: 100;
  }
  
  .nav__links.active {
    right: 0;
  }
  
  .nav__links a {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .services {
    padding: 4rem 1rem;
  }
  
  .booking {
    padding: 4rem 1rem;
  }
  
  .booking__form {
    padding: 2rem;
  }
  
  .service-details {
    padding: 120px 1rem 4rem;
  }
  
  .details-content {
    padding: 2rem;
  }
  
  .services__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .services h2,
  .booking h2 {
    font-size: 2rem;
  }
  
  .logo {
    font-size: 1.5rem;
  }
}
