/* ==============================contact us page==================================== */
.contact-us-details {
  padding: 50px 0;
}
/* Form Section */
.form-section {
}

.form-wrapper {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.form-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
  padding: 0 0.25rem;
  z-index: 1;
}

.form-label.floating {
  top: -0.5rem;
  left: 1rem;
  font-size: 0.85rem;
  color: #ff6b35;
  font-weight: 600;
  background: #ffffff;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-input.has-content,
.form-textarea.has-content {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}

.form-input:hover,
.form-textarea:hover {
  border-color: #ff7f7f;
}

.form-input.valid,
.form-textarea.valid {
  border-color: #10b981;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3e%3cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-size: 1rem;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-us-details .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 62%, #0d47a1 100%);
  color: white;
  border: none;
  padding: 14px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-us-details .submit-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0d47a1 0%, #19a7d1 62%, #17c7a3 100%);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn::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;
}

.submit-btn:hover::before {
  left: 100%;
}

/* Info Section */
.info-section {
  flex: 1;
  background: #dbfffd;
  color: #000000;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.contact-con h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins";
  color: #00245c;
}
.contact-con p {
  margin: 0;
  color: #606060;
  font-size: 14px;
}
.contact-icon i {
  font-size: 30px;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
}
.company-logo {
  font-family: "Poppins";
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0rem;
  color: #000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.company-logo::before {
  content: "◆";
  font-size: 1.2rem;
}

.info-title {
  font-size: 35px;
  font-weight: 700;
  font-family: "Inter";
}

.info-description {
  font-size: 15px;
  margin-bottom: 2rem;
  opacity: 1;
  line-height: 1.6;
  font-weight: 300;
}

.contact-us-details .contact-info {
  margin-bottom: 1rem;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #fff;
  transform: translateX(5px);
}

.contact-icon {
  padding-right: 20px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  background-size: 300% 300%;
}

.social-link:hover {
  background: #0d47a1;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(145, 145, 145, 0.4);
}

/* Floating shapes */
.floating-shape {
  position: absolute;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 40%, #0d47a1 100%);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Success message */
.success-message {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--success);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
}

.success-message.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .form-section,
  .info-section {
    flex: none;
  }

  .form-wrapper {
    padding: 2rem;
    margin: 1rem;
  }

  .info-section {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: 1.875rem;
  }

  .info-title {
    font-size: 2rem;
  }
}

/* Form validation styles */
.form-input.error,
.form-textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

.loading {
  position: relative;
  color: transparent;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ========================notifications============================ */
.notification-details {
  padding: 50px 0;
  margin: 0 auto;
}
.notification-details h3 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 48px;
  font-weight: 700;
  color: #001658;
}
.status-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 12%);
}

.status-card h4 {
  color: #19a7d1;
  font-size: 16px;
  margin-bottom: 8px;
}

.status-text {
  font-size: 15px;
  color: #000;
  margin-bottom: 6px;
}

.time {
  font-size: 13px;
  color: #666;
}

/* ========================booking successfull============================== */
.success-wrapper {
  max-width: 560px;
  margin: auto;
  text-align: center;
  position: relative;
  border-radius: 20px;
}
.f-con ul li a {
  letter-spacing: 0;
}
/* Success Badge */
.success-badge {
  width: 140px;
  height: 140px;
  background: #2ca02c;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.checkmark {
  width: 90px;
  height: 90px;
  background: #7ed957;
  border-radius: 50%;
  color: #fff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Text */
.success-wrapper h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: #000;
  font-weight: 700;
}

.success-wrapper p {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Button */
.success-wrapper .btn-home {
  display: inline-block;
  background: linear-gradient(135deg, #17c7a3 0%, #19a7d1 62%, #0d47a1 100%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-family: "Inter";
}

/* Confetti */
.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.c1 {
  background: #ff6b6b;
  top: 80px;
  left: 150px;
}
.c2 {
  background: #51cf66;
  top: 60px;
  right: 110px;
}
.c3 {
  background: #339af0;
  top: 130px;
  left: 100px;
}
.c4 {
  background: #fcc419;
  top: 140px;
  right: 110px;
}
.c5 {
  background: #845ef7;
  top: 100px;
  right: 170px;
}
