:root {
    --primary-color: #005eb8;
    --primary-dark: #005eb8;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--text-color);
    background-color: #f5f7fa;
    margin-top: 120px;
  }
  
  .message-wrapper {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
  }
  
  .alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    animation: slideup 0.4s ease-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  @keyframes slideDown {
    from {
      top: -100px;
      opacity: 0;
    }
    to {
      top: 20px;
      opacity: 1;
    }
  }
    
  
  .alert-success {
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
    width: 80%;
  }
  
  .alert-error {
    background-color: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
    width: 80%;
  }
  
  .close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: red;
    opacity: 0.7;
  }
  
  .close-btn:hover {
    opacity: 1;
  }
  
  @keyframes slideIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .contact-container {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 5px;
  }
  
  .contact-wrapper {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .contact-form {
    padding: 40px;
  }
  
  .contact-form h2 {
    margin-top: 0;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    position: relative;
  }
  
  .contact-form h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: #f9f9f9;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background-color: #fff;
  }
  
  textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  
  .radio-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 1px 4px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #ddd;
    flex: 1 -1 calc(33.333% - 15px);
    justify-content: center;
    width: 100%;
  }
  
  .radio-item:hover {
    background-color: #f0f0f0;
  }
  
  .radio-item input[type="radio"] {
    margin-right: 8px;
  }
  
  .radio-label {
    margin: 0;
    font-weight: 500;
  }
  
  .submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(76, 175, 80, 0.2);
    margin-top: 20px;
  }
  
  .submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
  }
  
  #date-picker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234CAF50' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    cursor: pointer;
  }
  
  .mb-3 {
    margin-bottom: 20px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
  }
  
  .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: #f9f9f9;
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background-color: #fff;
  }
  
  /* Customize flatpickr */
  .flatpickr-calendar {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: none;
  }
  
  .flatpickr-day.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .flatpickr-day.selected:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
  }
  
  /* Custom class for two-column layout */
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
  }
  
  .form-col {
    flex: 1;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .contact-form {
      padding: 30px 20px;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .radio-item {
      flex: 1 0 calc(50% - 10px);
    }
  }
  
  @media (max-width: 576px) {
    .radio-item {
      flex: 1 -1 100%;
    }
  }
  
  /* Custom animation for input fields */
  @keyframes focusAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
    100% { transform: translateY(0); }
  }
  
  input:focus, select:focus, textarea:focus {
    animation: focusAnimation 0.3s ease;
  }
  
  /* Customize intl-tel-input */
  .phone-input-container {
    position: relative;
}

.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.13/img/flags@2x.png");
    }
}

.phone-validation-feedback {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.valid-number {
    border-color: #28a745 !important;
}

.error-number {
    border-color: #dc3545 !important;
}
  
  
/* new feature dynamic date and time  */
.time-slots-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.time-slot-option {
  position: relative;
}

.time-slot-radio {
  display: none;
}

.time-slot-label {
  display: block;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.time-slot-radio:checked + .time-slot-label {
  background-color: #0D47A1;
  color: white;
  border-color: #0D47A1;
}

.time-slot-label:hover {
  background-color: #e9ecef;
}

.time-slot-radio:checked + .time-slot-label:hover {
  background-color: #0D47A1;
}



/* form error======================================= */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.error-message span {
    display: block;
    padding: 0.25rem 0;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}


/* ================================================================= */

.pricing-banner {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #0D47A1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-bg {
    font-size: 2.5rem;
    font-weight: bold;
    color: #9e9e9e;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-actual {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0D47A1;
}

.offer-tag {
    color: #dc3545;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 5px 0 0 0;
    border-top: 1px solid #dee2e6;
    padding-top: 10px;
}

/* Remove old styles */
.pricing-info,
.price-tag,
.original-price,
.discount-price {
    display: none;
}





/* price show============================= */
.price-display {
    font-size: 2rem;
    color: #1a73e8;
    margin-top: 8px;
}

