* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  overflow-x: hidden;
  background: #0a0a0a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 90px;
  width: auto;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: #c0c0c0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #c0c0c0);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.book-btn {
  background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
  color: #000;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8em;
  cursor: pointer;
  color: #ffffff;
}

/* Hero Section with Water Effects */
.hero {
  margin-top: 120px;
  height: 90vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Animated Water Droplets Background */
.water-drops {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.2) 2px,
      transparent 2px
    ),
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 3px, transparent 3px);
  background-size: 50px 50px, 80px 80px, 100px 100px;
  background-position: 0 0, 25px 25px, 50px 50px;
  animation: waterDrop 20s linear infinite;
  opacity: 0.3;
}

@keyframes waterDrop {
  0% {
    background-position: 0 0, 25px 25px, 50px 50px;
  }
  100% {
    background-position: 0 100vh, 25px calc(100vh + 25px),
      50px calc(100vh + 50px);
  }
}

/* Shine Effect */
.shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: shine 8s linear infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-logo {
  width: 250px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
  }
}

.hero-title {
  font-size: 4.5em;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 1.8em;
  margin-bottom: 10px;
  opacity: 0.95;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-tagline {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 40px;
  font-size: 1.1em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #000;
}

.btn-outline {
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  color: #000;
}

.btn-large {
  width: 100%;
  padding: 18px 40px;
  font-size: 1.2em;
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9em;
  text-decoration: none;
  display: inline-block;
}

/* Quick Info Section */
.quick-info {
  padding: 60px 20px;
  background: #ffffff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.info-item {
  text-align: center;
  padding: 30px 20px;
  background: #f5f5f5;
  border-radius: 15px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #000;
}

.info-icon {
  font-size: 3.5em;
  margin-bottom: 15px;
}

.info-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.info-item p {
  color: #333;
  line-height: 1.8;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 3em;
  margin-bottom: 15px;
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2em;
  color: #666;
  margin-bottom: 60px;
}

/* Services Section */
.services {
  padding: 100px 20px;
  background: #f5f5f5;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.02) 10px,
    rgba(0, 0, 0, 0.02) 20px
  );
  pointer-events: none;
}

.service-category {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.category-title {
  font-size: 2em;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: #000;
}

.service-card.featured {
  border-color: #000;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 4em;
  margin-bottom: 20px;
  filter: grayscale(50%);
}

.service-card h4 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #000;
  font-weight: 700;
}

.service-price {
  font-size: 3em;
  font-weight: 900;
  color: #000;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.service-features li {
  padding: 10px 0;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 500;
}

/* Modal */
.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.9);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  margin: 2% auto;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease;
  border: 3px solid #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 2em;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}

.close-modal:hover {
  color: #000;
}

.modal-content h2 {
  color: #000;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 800;
}

.modal-subtitle {
  color: #666;
  margin-bottom: 30px;
}

.form-section {
  margin-bottom: 30px;
}

.form-section h3 {
  color: #000;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 700;
}

.selected-service {
  background: #000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-price {
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
  background: #fff;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  outline: none;
  border-color: #000;
}

.payment-section {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
}

.payment-note {
  background: #fff3cd;
  padding: 12px;
  border-radius: 6px;
  color: #856404;
  margin-bottom: 20px;
  border-left: 4px solid #ffc107;
}

.payment-summary {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #e0e0e0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.summary-row.total {
  font-weight: bold;
  font-size: 1.2em;
  color: #000;
  border-bottom: none;
  margin-top: 10px;
}

.card-input-group input {
  margin-bottom: 15px;
}

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* About Section */
.about {
  padding: 100px 20px;
  background: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.1em;
  line-height: 1.9;
}

.why-choose {
  margin-top: 40px;
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
}

.why-choose h3 {
  color: #000;
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 700;
}

.why-choose ul {
  list-style: none;
}

.why-choose ul li {
  padding: 10px 0;
  color: #333;
  font-size: 1.05em;
  font-weight: 500;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 50%;
  border: 5px solid #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 20px;
  background: #f5f5f5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid #000;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8em;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 700;
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #4d4d4d 100%);
}

/* Contact Section */
.contact {
  padding: 100px 20px;
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #f5f5f5;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: #000;
}

.contact-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 1.5em;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-card p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-card a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #000;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 60px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2);
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 700;
}

.footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}

.footer-section p {
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #c0c0c0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #808080;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .book-btn {
    display: none;
  }

  .hero-title {
    font-size: 2.8em;
  }

  .hero-subtitle {
    font-size: 1.3em;
  }

  .hero-logo {
    width: 180px;
  }

  .section-title {
    font-size: 2.2em;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    width: 95%;
    padding: 25px;
    margin: 5% auto;
  }

  .card-row {
    grid-template-columns: 1fr;
  }
}
