/* --- CONTACT US SECTION STYLING --- */
    .contact-section {
      background-color: #ffffff;
    }

    .contact-subheading {
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--primary-blue);
      border-bottom: 2px solid rgba(197, 160, 89, 0.2);
      padding-bottom: 10px;
    }

    /* Left directory wrapper */
    .contact-info-wrapper {
      padding-right: 15px;
    }

    .contact-info-card {
      margin-bottom: 25px;
      background-color: #f8fafd;
      padding: 18px;
      border-radius: 6px;
      border: 1px solid rgba(11, 37, 69, 0.03);
      transition: all 0.3s ease;
    }

    .contact-info-card:hover {
      background-color: #ffffff;
      transform: translateX(5px);
      box-shadow: 0 5px 15px rgba(11, 37, 69, 0.05);
      border-color: rgba(197, 160, 89, 0.2);
    }

    .contact-icon-box {
      width: 44px;
      height: 44px;
      background-color: rgba(11, 37, 69, 0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-blue);
      font-size: 20px;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }

    .contact-info-card:hover .contact-icon-box {
      background-color: var(--primary-blue);
      color: #ffffff;
    }

    .info-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 4px;
    }

    .info-card-text {
      font-size: 13px;
      color: #555555;
      line-height: 1.5;
      margin-bottom: 0;
    }

    /* Right Form styling styling */
    .contact-form-wrapper {
      background-color: #f8fafd;
      padding: 40px;
      border-radius: 8px;
      border: 1px solid rgba(11, 37, 69, 0.05);
      box-shadow: 0 10px 30px rgba(11, 37, 69, 0.02);
    }

    /* floating label input customization */
    .contact-form-wrapper .form-control,
    .contact-form-wrapper .form-select {
      background-color: #ffffff;
      border: 1px solid rgba(11, 37, 69, 0.15);
      font-size: 14px;
      border-radius: 4px;
    }

    .contact-form-wrapper .form-control:focus,
    .contact-form-wrapper .form-select:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.1);
    }

    /* Submit Button styling */
    .btn-contact-submit {
      background-color: var(--primary-blue);
      color: #ffffff;
      border: none;
      font-weight: 700;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .btn-contact-submit:hover {
      background-color: var(--accent-gold);
      color: var(--primary-blue);
      box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
      transform: translateY(-2px);
    }

    /* Form Validation Helpers */
    .form-floating > .form-control:placeholder-shown ~ label {
      color: #777777;
    }

   

    /* --- CAMPUS MAP SECTION STYLING (WITH WHITE SPACE) --- */
    .map-section {
      background-color: #ffffff;
      padding-top: 20px; /* Subtle buffer space below the Contact section */
    }

    /* Map card wrapper to contain the map beautifully with borders */
    .map-card-wrapper {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(11, 37, 69, 0.08);
      box-shadow: 0 10px 30px rgba(11, 37, 69, 0.06);
    }

    .map-container {
      position: relative;
      width: 100%;
      height: 450px;
      z-index: 1;
    }

    .map-container iframe {
      display: block;
      filter: grayscale(10%) contrast(105%);
    }

    /* Floating Card Overlapping Map (Adjusted offset slightly for rounded look) */
    .map-overlay-card {
      position: absolute;
      top: 55%;
      left: 40px;
      transform: translateY(-50%);
      width: 320px;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 6px;
      box-shadow: 0 15px 35px rgba(11, 37, 69, 0.15);
      border-left: 5px solid var(--primary-blue);
      z-index: 2;
    }

    .map-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--accent-gold);
      display: inline-block;
      margin-bottom: 4px;
    }

    .map-overlay-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--primary-blue);
      margin-bottom: 5px;
    }

    .map-overlay-text {
      font-size: 12.5px;
      color: #555555;
      line-height: 1.6;
    }

    /* Directions Button */
    .btn-directions {
      background-color: var(--primary-blue);
      color: #ffffff;
      font-weight: 700;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 12px 20px;
      border-radius: 4px;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-directions:hover {
      background-color: var(--accent-gold);
      color: var(--primary-blue);
      box-shadow: 0 5px 15px rgba(197, 160, 89, 0.25);
    }


    /* Adjustments for tablets/mobile screens */
    @media (max-width: 768px) {

        .contact-form-wrapper {
        padding: 25px 20px;
      } 

      .map-container {
        height: 350px;
      }
      .map-container iframe {
        height: 350px;
      }
    }

