/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

/* Header Styles */
@media (min-width: 769px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
  }

  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
  }

  .nav-menu a {
    text-decoration: none;
    color: var(--nav-color, #ffffff);
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    outline: none;
    border: none;
    box-shadow: none;
  }
}

.nav-menu a:hover:not(.active) {
  color: #e74c3c;
}

.nav-menu a.active {
  color: #e74c3c;
}

/* Header scroll behavior - black text on scroll */
.header.scrolled .nav-menu a {
  color: var(--nav-color-scrolled, #000000);
  text-shadow: none;
}

.header.scrolled .nav-menu a:hover:not(.active) {
  color: #e74c3c;
}

.header.scrolled .nav-menu a.active {
  color: #e74c3c;
}

/* Prevent active styles when clicking */
.nav-menu a.clicking {
  color: #ffffff !important;
}

.header.scrolled .nav-menu a.clicking {
  color: #000000 !important;
}

.header.scrolled .nav-phone {
  color: #000000;
  background: none;
}

.header.scrolled .hamburger span {
  background: #000000;
}

/* Header click behavior - orange color without outline */
.nav-menu a:active:not(.active),
.nav-menu a:focus:not(.active) {
  color: #e74c3c !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Header phone badge */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  background: none;
  padding: 6px 12px;
}
.nav-phone i {
  color: #e74c3c;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide hero when Why Choose Us section is reached */
.hero.hidden {
  opacity: 0;
  transform: translateY(-20px) scale(0.98);
  pointer-events: none;
}
@media (min-width: 750px) {
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("assets/8.jpeg") center/cover no-repeat;
    background-size: cover;
    background-position: center;
    filter: brightness(1.3);
    z-index: -2;
  }
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23fff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Hero Logo */
@media (min-width: 750px) {
  .hero-logo {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeInLogo 1s ease-in-out 0.5s forwards;
  }

  .hero-logo-image {
    width: 600px;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
  }
}

.hero-logo-image:hover {
  transform: scale(1.05);
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  max-width: 600px;
  padding: 20px 40px;
  margin: 0 auto;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero.hidden .hero-content {
  opacity: 0;
  transform: translateY(30px);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  color: #f1f1f1;
  margin-bottom: 20px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Content Spacer */
.content-spacer {
  height: 100vh;
  width: 100%;
}

/* Button Styles */
.btn {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #e74c3c;
  color: white;
}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
  background: #e74c3c;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

.btn-footer {
  background: #e74c3c;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-submit {
  background: #e74c3c;
  color: white;
  width: 100%;
  padding: 15px;
  font-size: 16px;
}

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

/* Feature Blocks */
.features {
  padding: 80px 0;
  background: #ffffff;
}
@media (min-width: 800px) {
  .feature-blocks {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .feature-block {
    flex: 1;
    max-width: 280px;
    height: 280px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    transform: scale(0) translateY(50px);
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
  }
}

.feature-block.animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.feature-block:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-block:hover .feature-image img {
  transform: scale(1.1);
}

.feature-block h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Section Styles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Only hide titles that should be animated */
.why-choose-us .section-title {
  opacity: 0;
  transform: translateY(-30px);
}

.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 800px) {
  .section-subtitle {
    margin: 0 auto 60px;
  }
  .section-header {
    margin-bottom: 40px;
  }
}
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease 0.2s;
}

/* Only hide subtitles that should be animated */
.why-choose-us .section-subtitle {
  opacity: 0;
  transform: translateY(-20px);
}

.section-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Why Choose Us */
.why-choose-us {
  padding: 100px 0;
  background: white;
}

@media (min-width: 800px) {
  .why-choose-content {
    gap: 60px;
  }
  .why-choose-left,
  .why-choose-right {
    gap: 40px;
  }
}
.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  align-items: center;
}

.why-choose-left,
.why-choose-right {
  display: flex;
  flex-direction: column;
}

.circular-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.5) rotate(180deg);
  transition: all 0.8s ease;
}

.circular-image.animate {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.circular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.circular-image:hover img {
  transform: scale(1.05);
}

.image-placeholder {
  text-align: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
}

.image-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.feature-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.feature-point.animate {
  opacity: 1;
  transform: translateX(0);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
}

.feature-text:hover {
  transform: scale(1.08) translateY(-5px);
  background: rgba(231, 76, 60, 0.05);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
}

.feature-text h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-text:hover h4 {
  color: #e74c3c;
  text-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.feature-text p {
  color: #666;
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-text:hover p {
  color: #333;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Our Services */
.our-services {
  padding: 10px 0;
  background: #ffffff;
}

/* Services Scroll Container */
.services-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.services-scroll-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

.services-grid {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  min-width: max-content;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 0 0 350px;
  min-width: 350px;
}

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

.service-image {
  height: 200px;
  background: linear-gradient(135deg, #e74c3c, #3498db);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-content p {
  color: #666;
  line-height: 1.6;
}

/* About Us */
.about-us {
  padding: 100px 0;
  background: white;
  color: #333;
}

/* New About layout to match screenshot */
.about-header {
  max-width: 680px;
}
.about-intro {
  color: #333;
  margin-bottom: 30px;
}

/* About Us Layout - matches image exactly */
@media (min-width: 800px) {
  .about-layout {
    margin-top: 40px;
  }
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-bottom-row {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

/* Service boxes styling */
.about-service-box {
  background: #f8f9fa;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translateY(0) scale(1);
  border: 2px solid #e9ecef;
  min-height: 200px;
  min-width: 200px;
}

.about-service-box.box-1 {
  animation-delay: 0.1s;
}

.about-service-box.box-2 {
  animation-delay: 0.2s;
}

.about-service-box.box-3 {
  animation-delay: 0.3s;
}

.about-service-box.box-4 {
  animation-delay: 0.4s;
}

.about-service-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 8px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-service-box:hover .about-service-image {
  transform: scale(1.1);
}

.about-service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px 15px 15px;
  transform: translateY(0);
  transition: transform 0.4s ease;
  border-radius: 0 0 8px 8px;
  z-index: 2;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-service-box:hover .about-service-overlay {
  transform: translateY(0);
}

.about-service-overlay span {
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

/* Logo container with reduced opacity */
.about-logo-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.6; /* Reduced opacity */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #000000;
  color: white;
  border: none;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (min-width: 800px) {
  .contact-title {
    margin-bottom: 20px;
  }
  .contact-subtitle {
    margin-bottom: 40px;
  }
  .contact-features {
    margin-bottom: 40px;
  }
}
.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #bdc3c7;
}

.contact-features {
  list-style: none;
}

.contact-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-features i {
  color: #e74c3c;
  font-size: 1.2rem;
}

.consultation {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.consultation i {
  color: #27ae60;
  font-size: 1.3rem;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

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

/* Our Clients */
.our-clients {
  padding: 80px 0;
  background: #ffffff;
}

/* Clients Scroll Container */
.clients-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  padding-bottom: 20px;
  margin-bottom: -20px;
  margin-top: 60px;
}

.clients-scroll-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

.clients-grid {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  min-width: max-content;
}
@media (min-width: 800px) {
  .client-logo {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 0 0 200px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
  }
}

.client-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo-image {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo:hover .client-logo-image {
  transform: scale(1.05);
}

.logo-placeholder {
  color: #999;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 60px 0 20px;
  border: none;
}

/* Top footer strip */
.footer-strip {
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 14px 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.strip-item i {
  color: #e74c3c;
  font-size: 20px;
}
.strip-item small {
  display: block;
  opacity: 0.7;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.strip-item strong {
  display: block;
  font-size: 14px;
}

@media (min-width: 800px) {
  .social-links.center {
    justify-content: center;
  }
}

@media (min-width: 800px) {
  .footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
}

.footer-column h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column p {
  color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-column ul li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.695);
}

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

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

.contact-details p {
  display: flex;
  text-align: left;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-details i {
  color: #e74c3c;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #e74c3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #5a6c7d;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  color: #bdc3c7;
  margin: 0;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #e74c3c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c0392b;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-whatsapp.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp a:hover {
  background: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
  font-size: 28px;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

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

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #e9ecef;
  background: #ffffff;
  border-radius: 12px 12px 0 0;
  position: sticky;
  top: 0;
  z-index: 10001;
}

.modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover,
.close:focus {
  color: #e74c3c;
}

.modal-form {
  padding: 30px;
}

.modal-form .form-group {
  margin-bottom: 25px;
}

.modal-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: "Inter", sans-serif;
}

.modal-form input[type="date"] {
  width: 200px;
  max-width: 100%;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: #e74c3c;
}

.modal-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.form-actions .btn {
  padding: 12px 25px;
  font-size: 16px;
  min-width: 100px;
}
