.main-btn {
    background-color: #276562;
    color: white;
}

/* Form */
/* Form Section Styling */
#contact-form-1 {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light background for contrast */
  }
  
  #contact-form-1 .title {
    margin-bottom: 40px;
  }
  
  #contact-form-1 .mbr-section-title {
    color: #333; /* Dark text for readability */
    font-weight: 600;
  }
  
  #contact-form-1 .mbr-section-subtitle {
    color: #666; /* Softer subtitle color */
    font-weight: 400;
  }
  
  #contact-form-1 form {
    background-color: #fff; /* White form background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  #contact-form-1 .form-label {
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
  }
  
  #contact-form-1 .form-control,
  #contact-form-1 .form-select {
    border: 1px solid #ddd; /* Light border */
    border-radius: 5px;
    padding: 12px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }
  
  #contact-form-1 .form-control:focus,
  #contact-form-1 .form-select:focus {
    border-color: #c99d5a; /* Matches the gold-ish social icon color */
    box-shadow: 0 0 5px rgba(201, 157, 90, 0.3);
    outline: none;
  }
  
  #contact-form-1 .form-control::placeholder {
    color: #999;
  }
  
  #contact-form-1 .invalid-feedback {
    color: #dc3545; /* Bootstrap default red for validation errors */
    font-size: 14px;
    display: block;
    margin-top: 5px;
  }
  
  #contact-form-1 .btn-primary {
    background-color: #c99d5a; /* Gold-ish button color from social icons */
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
  }
  
  #contact-form-1 .btn-primary:hover {
    background-color: #a77f46; /* Darker shade on hover */
    color: #fff;
  }
  
  #contact-form-1 .text-danger {
    color: #dc3545 !important;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    #contact-form-1 form {
      padding: 20px;
    }
  
    #contact-form-1 .btn-primary {
      width: 100%;
      margin-top: 10px;
    }
  }
  
  /* General Enhancements for Consistency with Mobirise Theme */
  body {
    font-family: 'Jost', sans-serif;
  }
  
  .display-7 {
    font-size: 1.1rem !important;
  }
  
  .mbr-fonts-style {
    line-height: 1.6;
  }

   /* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    /* animation: popupFadeIn 0.3s ease-in-out; */
  }
  
  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }
  
  .popup-close:hover {
    color: #ff4444;
  }
  
  .pricing-section {
    text-align: center;
  }
  
  .pricing-title {
    color: #276562;
    margin-bottom: 1.5rem;
    font-size: 1.8em;
    font-weight: bold;
  }
  
  .offer-box {
    background: #194745;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #6ab0ad;
    margin: 1rem 0;
  }
  
  .offer-box p {
    margin: 10px 0;
    font-size: 1em;
    color: whitesmoke;
  }
  
  .discount {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .timer-container {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: white;
  }
  
  .timer {
    font-weight: bold;
    color: #438e8a;
    font-size: 1.5rem;
  }
  
  .claim-btn {
    background: #276562;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
  }
  
  .claim-btn:hover {
    background: #276562;
  }
  
  .claim-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  