:root {
  --primary-color: #000066; /* dark navy blue */
  --primary: #000066; /* dark navy blue */
  --secondary-color: #fe0000; /* bright red */
  --accent-color: #a4abbb; /* gray */
  --dark-color: #000033; /* deeper tone of navy for dark backgrounds */
  --light-color: #fefdfd; /* off-white */

  --gradient-primary: linear-gradient(135deg, #000066 0%, #fe0000 100%);
  --gradient-secondary: linear-gradient(135deg, #fe0000 0%, #a4abbb 100%);

  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);

  --border-radius: 20px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --modal-bg: rgba(0, 0, 0, 0.8);
  --modal-content-bg: #ffffff;
  --success-gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  --success-color: #10b981;
  --modal-radius: 24px;
  --modal-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --modal-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

/* Navbar Styles */
.navbar {
  padding: 1.5rem 0;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar-brand img {
  height: 60px;
  transition: var(--transition);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  background: rgba(0, 102, 255, 0.05);
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 10px;
  color: white;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0%,
    rgba(0, 212, 255, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.03"><path d="M0 0h1200v600H0z" fill="none"/><circle cx="200" cy="150" r="80" fill="%230066ff"/><circle cx="1000" cy="400" r="60" fill="%2300d4ff"/><rect x="400" y="100" width="120" height="120" rx="20" fill="%23ff6b35"/><polygon points="800,200 900,100 1000,200 900,300" fill="%230066ff"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
}

.btn-primary-custom {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: none;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.btn-primary-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
  color: white;
}

.btn-secondary-custom {
  background: white;
  color: var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary-custom:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* Updated Search Box Styles */
.search-box-hero {
  max-width: 600px;
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  width: 100%;
}

.search-box-hero .input-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

.search-box-hero .form-control {
  flex: 1 1 auto;
  min-width: 0;
  border: 2px solid #e0e0e0;
  border-radius: 12px !important;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: var(--transition);
}

.search-box-hero .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
  outline: none;
}

.search-box-hero .search-btn {
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: fit-content;
}

.search-box-hero .btn-text {
  display: inline;
}

.availability-text {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .search-box-hero {
    padding: 1.25rem;
    border-radius: 16px;
    margin-top: 1.5rem;
  }

  .search-box-hero .input-group {
    flex-direction: column;
    gap: 0.75rem;
  }

  .search-box-hero .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    text-align: center;
    border-radius: 12px !important;
  }

  .search-box-hero .search-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    justify-content: center;
    border-radius: 12px;
  }

  .search-box-hero .btn-text {
    display: inline;
  }

  .availability-text {
    font-size: 0.9rem;
    margin-top: 0.75rem;
  }
}

@media (max-width: 480px) {
  .search-box-hero {
    padding: 1rem;
  }

  .search-box-hero .form-control {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }

  .search-box-hero .form-control::placeholder {
    font-size: 0.95rem;
  }

  .search-box-hero .search-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .search-box-hero .search-btn i {
    font-size: 1rem;
  }

  .availability-text {
    font-size: 0.85rem;
  }
}

/* For very small screens */
@media (max-width: 360px) {
  .search-box-hero .form-control {
    font-size: 0.9rem;
    padding: 0.7rem 0.75rem;
  }

  .search-box-hero .form-control::placeholder {
    font-size: 0.9rem;
  }

  .search-box-hero .search-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }

  .search-box-hero .search-btn .btn-text {
    font-size: 0.9rem;
  }
}

/* Ensure placeholder is visible */
.search-box-hero .form-control::placeholder {
  color: #666;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.search-box-hero .form-control:focus::placeholder {
  opacity: 0.5;
}

.hero-shapes {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80%;
  z-index: 0;
}

.shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: var(--gradient-primary);
  opacity: 0.1;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  opacity: 0.1;
  bottom: 20%;
  right: 20%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(360deg);
  background: var(--gradient-secondary);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

/* How It Works */
.process-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
}

.process-step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

.step-content {
  width: 45%;
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.step-content h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: white;
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
}

.service-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.service-overlay h3 {
  color: white;
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-content {
  padding: 2rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--primary-color);
}

/* Areas Section */
.areas-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
}

.location-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin: 1rem;
  border: 1px solid #f0f0f0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-content {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--dark-color);
  font-size: 1.1rem;
  transition: var(--transition);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.5rem 2rem;
  background: white;
  color: #666;
  line-height: 1.8;
}

/* Quote Section */
.quote-section {
  padding: 100px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" opacity="0.05"><path d="M0 0h1200v600H0z" fill="white"/></svg>');
}

.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.quote-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.quote-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.contact-number {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-number:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

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

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
  color: white;
}

.floating-btn.phone {
  background: var(--gradient-primary);
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.floating-btn:hover::after {
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step,
  .process-step:nth-child(odd) {
    flex-direction: row;
    margin-left: 60px;
  }

  .step-content {
    width: 100%;
  }

  .step-number {
    left: -55px;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 80px 0;
  }

  .features-section,
  .process-section,
  .services-section,
  .areas-section,
  .testimonials-section,
  .faq-section,
  .quote-section {
    padding: 60px 0;
  }

  .footer {
    padding: 60px 0 30px;
  }
}

/* Modern Availability Modal Styles */

#availability-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--modal-bg);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#availability-modal.active {
  opacity: 1;
  visibility: visible;
}

.availability-confirmation {
  background: var(--modal-content-bg);
  border-radius: var(--modal-radius);
  padding: 0;
  width: 90%;
  max-width: 500px;
  box-shadow: var(--modal-shadow);
  transform: translateY(-30px) scale(0.7);
  opacity: 0;
  transition: var(--modal-transition);
  position: relative;
  overflow: hidden;
}

#availability-modal.active .availability-confirmation {
  opacity: 1;
}

.availability-confirmation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--success-gradient);
}

.modal-header {
  padding: 30px 30px 15px;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--success-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 15px;
}

.modal-header h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 4px;
  background: var(--success-gradient);
  border-radius: 2px;
}

#close-availability-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  border: none;
  font-size: 24px;
  font-weight: 300;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

#close-availability-modal:hover {
  background: #0066ff;
  color: white;
  transform: rotate(90deg);
}

.modal-body {
  padding: 0 30px 30px;
}

.availability-message {
  font-size: 1.2rem;
  text-align: center;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
  padding: 15px;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.05) 0%,
    rgba(0, 212, 255, 0.05) 100%
  );
  border-radius: 15px;
  border-left: 4px solid #0066ff;
}

.availability-message strong {
  color: #0066ff;
  font-weight: 700;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.service-options div {
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #333;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-options div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--success-gradient);
}

.service-options div:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
  border-color: #0066ff;
}

.service-options div::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.call-button,
.quote-button {
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.call-button {
  background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.call-button::before {
  content: "📞";
  font-size: 1.2rem;
}

.call-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
  background: linear-gradient(135deg, #0052d4 0%, #00b8e6 100%);
}

.quote-button {
  background: white;
  color: #0066ff;
  border: 2px solid #0066ff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-button::before {
  content: "💬";
  font-size: 1.2rem;
}

.quote-button:hover {
  background: #0066ff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* Success Animation */
@keyframes confetti {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.success-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 20px;
  background: var(--success-gradient);
  top: -20px;
  animation: confetti 3s linear forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .availability-confirmation {
    width: 95%;
    max-width: 400px;
  }

  .modal-header h2 {
    font-size: 1.8rem;
  }

  .service-options {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .call-button,
  .quote-button {
    padding: 16px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-header {
    padding: 25px 20px 15px;
  }

  .modal-body {
    padding: 0 20px 25px;
  }

  .modal-header h2 {
    font-size: 1.6rem;
  }

  .availability-message {
    font-size: 1.1rem;
    padding: 12px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .availability-confirmation {
    background: #1a1a2e;
    color: #ffffff;
  }

  .availability-message {
    background: rgba(255, 255, 255, 0.05);
    color: #e0e0e0;
  }

  .service-options div {
    background: #2d3748;
    color: #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .quote-button {
    background: transparent;
    color: #ffffff;
    border-color: #0066ff;
  }

  .quote-button:hover {
    background: #0066ff;
  }
}
