nav a.active-button {
   background: rgba(0, 76, 115, 1);
   border: 1px solid rgba(0, 76, 115, 1);
   color: var(--color-white);
   pointer-events: none;
}

.hero-title {
   position: absolute;
   font-size: 2.7rem;
   font-weight: 300;
   line-height: 80px;
   text-transform: uppercase;
   margin-top: 19px;
}

.contact-us {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: var(--space-12);
}

.form-container {
   display: flex;
   flex-direction: column;
   justify-content: center;
   position: relative;
}

.form-group {
   margin-bottom: 23px;
}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: var(--space-3);
}

label {
   display: block;
   font-weight: 400;
   font-size: 18px;
   margin-bottom: var(--space-4);
}

.required {
   color: #ef4444;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
   width: 100%;
   padding: 12px 16px !important;
   border: 1px solid #000000;
   border-radius: 25px;
   font-size: 14px;
   color: #374151;
   background-color: white;
   transition: all 0.2s ease;
   outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
   border-color: #3b82f6;
   box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

select {
   cursor: pointer;
   appearance: none;
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
   background-position: right 12px center;
   background-repeat: no-repeat;
   background-size: 16px;
   padding-right: 40px;
}

textarea {
   border-radius: 16px;
   resize: none;
   min-height: 120px;
   font-family: inherit;
}

.checkbox-group {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   margin: 24px 0;
}

.checkbox-group input[type="checkbox"] {
   width: 18px;
   height: 18px;
   margin-top: 2px;
   cursor: pointer;
}

.checkbox-group label {
   font-size: 13px;
   line-height: 1.4;
   margin-bottom: 0;
   cursor: pointer;
   color: #6b7280;
}

.submit-btn {
   background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
   color: white;
   border: none;
   padding: 14px 32px;
   border-radius: 25px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
   transform: translateY(0);
}

.image-container {
   position: relative;
   overflow: hidden;
   border-radius: var(--space-5);
}

.image-overlay {
   position: absolute;
   inset: 0;
   background: url("/assets/contact-us.png") center/cover;
}

.sup-logo {
   position: absolute;
   bottom: 30px;
   right: 30px;
   background: var(--color-primary);
   color: white;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
   font-size: 18px;
   box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
   padding: var(--space-2);
}

/* Loading spinner for the form */
.form-loading {
   height: 100%;
   width: 100%;
   position: absolute;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   background-color: var(--color-background);
   opacity: .7;
}

.form-loading .spinner {
   width: 100px;
   height: 100px;
   border-width: 7px;
}

/* notification for the form */

.notification {
   padding: 15px 20px;
   margin-bottom: 10px;
   border-radius: 8px;
   color: white;
   font-weight: bold;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   animation: fadeInOut 3s forwards;
   opacity: 0;
 }

 .success {
   background-color: #4caf50;
 }

 .error {
   background-color: #f44336;
 }

 @keyframes fadeInOut {
   0% { opacity: 0; transform: translateY(-10px); }
   10% { opacity: 1; transform: translateY(0); }
   90% { opacity: 1; }
   100% { opacity: 0; transform: translateY(-10px); }
 }

@media (max-width: 768px) {
   .hero .sm-screen-img {
      border-radius: 1em;
   }

   .hero-title {
      position: static;
   }

   .arrow-down {
      opacity: 1;
      right: 0;
   }

   .contact-us {
      grid-template-columns: 1fr;
   }

   .form-container {
      padding: 20px;
   }

   .form-row {
      grid-template-columns: 1fr;
      gap: 0;
   }

   .image-container {
      display: none;
   }
}
