:root {
    --dark: #061928;
    --green: #061928;
    --light: #f8f8f8;
  }

  body {
    background: var(--light);
    color: var(--dark);
    font-family: sans-serif;
  }

  .btn-primary {
    background: #061928 !important;
    color: #fff !important;
    padding: 10px !important;
    border: 1px solid #061928 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition:  0.3s ease-out !important;
}

.btn-primary:hover {
    letter-spacing: 1px !important;
}

  .banner {
    display: flex;
    width: 100%;
    height: 40vh;
    padding: 20px;
    gap: 20px;
    color: #f8f8f8;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(45deg, #0D0D0D, #506B56, #0D0D0D);
    border-bottom-left-radius: 2%;
    border-bottom-right-radius: 2%;
    border-top-left-radius: 0%;
    border-top-right-radius: 0%;
}
  .banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .banner h1 {
      font-size: 1em !important;
    }

    .banner p {
      font-size: .8em !important;
    }

    .banner .btn {
      font-size: .8em !important;
      padding: 10px 20px !important;
    }

  }

  /* Sections */
  .section-padding { padding: 60px 0; }

  /* Contact Form */
  .contact-form {
    max-width: 800px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .contact-form .form-control {
    border: 1px solid var(--green);
    border-radius: 4px;
    transition: border-color 0.3s;
  }
  .contact-form .form-control:focus {
    border-color: var(--dark);
    outline: none;
  }
  .contact-form button {
    background: var(--green);
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    transition: background 0.3s, letter-spacing 0.3s;
  }
  .contact-form button:hover {
    background: #fff;
    color: var(--green);
    border: 1px solid var(--green);
    letter-spacing: 1px;
  }

  /* Info Cards */
  .info-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  .info-card i {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 10px;
  }
  .info-card h5 {
    margin-bottom: 5px;
    font-weight: 500;
  }
  .info-card p {
    font-weight: 300;
  }
  .info-card:hover {
    transform: translateY(-8px);
  }

  /* Map */
  .map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
  }
  .delay-1 { animation-delay: 0.4s; }
  .delay-2 { animation-delay: 0.7s; }
