* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree";
}

body {
  margin: 0;
  padding: 0;
  color: #fff;
}

:root {
    --primary: #e2a845;
    --dark: #111111;
    --light: #ffffff;
    --gray: #f8f8f8;
    --transition: all 0.3s ease;
  }
  
  .contact-background {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust as needed */
    background: url("../images/about.jpg") center/cover no-repeat;
  }
  
  .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay effect */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .contact-text {
    color: #fff;
    max-width: 80%;
    font-size: 18px;
  }
  
  .contact-text h2 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  .contact-text span{
    color: #F1AC32;
    font-style: italic;
  }
  
  .contact-text p {
    margin-bottom: 15px;
    max-width: 800px;
  }
  
  .welcome-badge {
    display: inline-block;
    padding: 12px 25px;
    background-color: rgba(156, 156, 156, 0.481);
    border-radius: 30px;
    margin-bottom: 30px;
  }
  
  /* Contact Section */
  .leh__contact {
    padding: 80px 0;
  }
  
  .leh__contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .leh__contact-info {
    flex: 1;
    min-width: 300px;
  }
  
  .leh__contact-info-title {
    font-size: 32px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .leh__contact-info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
  }
  
  .leh__contact-info-description {
    margin-bottom: 30px;
    color: #555;
  }
  
  .leh__contact-info-list {
    list-style: none;
  }
  
  .leh__contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  
  .leh__contact-info-icon {
    margin-right: 15px;
    min-width: 24px;
    color: var(--primary);
  }
  
  .leh__contact-info-text {
    flex: 1;
  }
  
  .leh__contact-info-text-bold {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .leh__contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--gray);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .leh__contact-form-title {
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .leh__contact-form-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
  }
  
  .leh__contact-form-group {
    margin-bottom: 20px;
  }
  
  .leh__contact-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .leh__contact-form-input,
  .leh__contact-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: var(--transition);
  }
  
  .leh__contact-form-input:focus,
  .leh__contact-form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(226, 168, 69, 0.2);
  }
  
  .leh__contact-form-textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .leh__contact-form-button {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
  }
  
  .leh__contact-form-button:hover {
    background-color: #c98f2c;
    transform: translateY(-2px);
  }
  
  /* Map Section */
  .leh__map {
    height: 400px;
    margin-top: 80px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .leh__map-frame {
    width: 100%;
    height: 100%;
    border: none;
  }