@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@100..900&display=swap');

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

body {
  font-family: 'Crimson Text', serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Logo */
header {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #dc2626;
}

.logo {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  color: #dc2626;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo img {
  height: 80px;
  max-height: 10vh;
  width: auto;
  object-fit: contain;
}

.logo:hover {
  text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
  transform: scale(1.05);
}

/* Quote Section */
.quote-section {
  height: 60px;
  padding: 150px 0 100px;
  text-align: center;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}

.quote {
  font-size: 3.0em;
  font-style: italic;
  color: #f0f0f0;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

/* Graphics & Features */
.features-section {
  padding: 5px 0;
  background: linear-gradient(45deg, #0f0f0f 0%, #1f1f1f 100%);
}

.section-title {
  font-family: 'HandJet';
  text-align: center;
  font-size: 2.5em;
  color: #dc2626;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #dc2626;
  margin: 20px auto;
  border-radius: 2px;
}

.features-container {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-top: 60px;
  min-height: 600px;
}

.features-left,
.features-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.features-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.center-graphic {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5));
}

@media (max-width: 768px) {
  .center-graphic {
    max-height: 300px;
    width: 90%;
  }
}

.feature-card {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid #dc2626;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
  border-color: #f87171;
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 20px;
  color: #dc2626;
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
  margin: 0 auto 20px auto;
  display: block;
}

.feature-title {
  font-family: 'HandJet';
  font-weight: 400;
  font-size: 2em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.feature-desc {

  font-size: 1.5em;
  font-weight: 400;
  color: #b0b0b0;
}

/* Packages */
.packages-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.package-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #333;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
  transition: left 0.5s ease;
}

.package-card:hover::before {
  left: 100%;
}

.package-card:hover {
  border-color: #dc2626;
  transform: scale(1.05);
}

.package-name {
  font-family: 'HandJet';
  font-size: 1.8em;
  color: #dc2626;
  margin-bottom: 20px;
}

.package-price {
  font-size: 2.5em;
  font-weight: bold;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.package-features {
  font-size: 1.3em;
  font-weight: 400;
  color: #b0b0b0;
  list-style: none;
  margin-bottom: 30px;
}

.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
  color: #b0b0b0;
}

.package-features li:last-child {
  border-bottom: none;
}

.book-btn {
  background: linear-gradient(45deg, #dc2626, #991b1b);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-btn:hover {
  background: linear-gradient(45deg, #991b1b, #7f1d1d);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.4);
}

/* Reviews */
.reviews-section {
  padding: 60px 20px;
  margin: 40px auto;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
  border: 2px dashed #dc2626;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  max-width: 600px;
}

.reviews-section:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.4);
}

/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #dc2626;
  color: #f0f0f0;
  margin: 20% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5em;
  cursor: pointer;
  color: #991b1b;
}

.stars {
  color: #fbbf24;
  margin-bottom: 15px;
}

/* About Us */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.about-text {
  font-size: 1.2em;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 40px;
}

/* Contact */
.contact-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  overflow-x: auto;
  padding: 20px 10px;
  justify-content: space-around;
}

.contact-item {
  text-align: center;
}

.contact-icon {
  font-size: 2.5em;
  color: #dc2626;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.contact-info {
  color: #b0b0b0;
}

.corner-img {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  /* Adjust size as needed */
  z-index: 9999;
  pointer-events: none;
  /* Optional: allows clicking through the image */
}

.click-here {
  width: 100px;
}

.employee-card {
  background: linear-gradient(135deg, #1f2937, #111827);
  border: 2px solid #dc2626;
  border-radius: 20px;
  color: #f3f4f6;
  max-width: 350px;
  margin: 30px auto;
  padding: 20px;
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.3);
  font-family: 'Courier New', monospace;
  text-align: center;
  transition: transform 0.3s ease;
}

.employee-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(220, 38, 38, 0.6);
}

.employee-photo img {
  width: 200px;
  height: 200px;
  border-radius: 20%;
  object-fit: cover;
  border: 3px solid #991b1b;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.employee-name {
  font-size: 1.5em;
  margin: 15px 0 5px;
  color: #facc15;
  /* Yellow neon style */
}

.employee-title {
  font-size: 0.9em;
  color: #94a3b8;
  margin-bottom: 15px;
  font-style: italic;
}

/* Footer */
footer {
  background: #000;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #dc2626;
}

body {
  background: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Crimson Text', serif;
  text-align: center;
  padding: 50px 20px;
}

.booking-form {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #dc2626;
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.2);
}

input,
select {
  padding: 12px;
  margin: 15px 0;
  width: 100%;
  border: none;
  border-radius: 10px;
  font-size: 1em;
  background-color: #111827;
  color: #f0f0f0;
}

select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' viewBox='0 0 24 24' width='18' height='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.submit-btn {
  background: linear-gradient(45deg, #dc2626, #991b1b);
  color: white;
  border: none;
  padding: 15px;
  font-size: 1.1em;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(45deg, #991b1b, #7f1d1d);
}

.confirmation {
  font-size: 1.3em;
  margin-top: 30px;
  color: #facc15;
}

.cod-notice {
  margin: 15px 0;
  padding: 10px 15px;
  background-color: #ffeb3b1a;
  border-left: 4px solid #ffc107;
  color: #e0c200;
  font-weight: 600;
  font-family: 'Crimson Text', serif;
  border-radius: 6px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .employee-photo img {
    width: 150px;
    height: 150px;
  }

  .employee-card {
    padding: 15px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .book-btn {
    width: 100%;
    padding: 16px 0;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .corner-img {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 2em;
  }

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

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

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

  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .features-left,
  .features-right {
    width: 100%;
    align-items: center;
  }

  .feature-card {
    width: 90%;
    margin: 0 auto;
  }

  .quote {
    font-size: 1.2em;
    padding: 0 10px;
  }

  .section-title {
    font-family: 'HandJet';
    font-size: 1.8em;
  }

  .package-card {
    padding: 20px;
  }

  .package-name {
    font-size: 1.5em;
  }

  .package-price {
    font-size: 2em;
  }

  .review-card {
    padding: 20px;
  }
}