  /* ================= BASE ================= */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary-color: #0c3d2c;
    --accent-color: #f4b400;
    --text-color: #1a1a1a;
    --bg-color: #f9f9f9;
    --white: #fff;
    --gray: #e6e6e6;
    --transition: 0.3s ease;
    --font: 'Plus Jakarta Sans', sans-serif;
  }

  body {
    margin: 0;
    font-family: var(--font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--dark-green);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
  }

  .nav-links li a {
    color: #0b3426;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #d9eedd;
    color: var(--dark-green);
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 1000;
    min-width: 180px;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    color: var(--dark-green);
    padding: 10px 16px;
    display: block;
    text-decoration: none;
    transition: background 0.3s;
  }

  .dropdown-menu li a:hover {
    background-color: #f4ffec;
  }

  .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-light {
    background-color: var(--light-green);
    color: var(--dark-green);
  }

  .btn-dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .btn-light:hover {
    background-color: #66d992;
  }

  .btn-dark:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--dark-green);
    padding: 30px 20px;
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu.open {
    right: 0;
  }

  .mobile-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
  }

  .close-menu {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
  }

  .mobile-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  @media (max-width: 1024px) {
    .desktop-only {
      display: none;
    }

    .hamburger {
      display: flex;
    }

  /* ================= PROPERTY DETAILS ================= */
  .property-details {
    padding: 80px 5%;
    background-color: #f4ffec;
  }

  .property-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1b382b;
  }

  .property-details p {
    font-size: 1.05rem;
    color: #2c4439;
    max-width: 800px;
    margin: 0 auto 30px;
  }

  .property-details-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }

  .features-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: left;
  }

  .features-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #19362e;
  }

  .cta-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    background-color: #1b382b;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .cta-btn:hover {
    background-color: #4fc874;
    color: #1b382b;
  }
  }

  /* ================= HERO ================= */
  .ambassador-hero {
    background: url('assets/ambassador-hero.jpg') center center/cover no-repeat;
    padding: 8rem 0 5rem;
    text-align: center;
    color: var(--white);
    position: relative;
  }

  .ambassador-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  .ambassador-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    padding: 0 1rem;
  }

  .ambassador-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
  }

  .ambassador-hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
  }

  /* ================= FORM SECTION ================= */
  .ambassador-form-section {
    padding: 4rem 0;
  }

  .ambassador-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
  }

  .form-group span {
    color: red;
  }

  input,
  textarea,
  select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-family: var(--font);
    font-size: 1rem;
    transition: border var(--transition);
    background-color: #fff;
  }

  input:focus,
  textarea:focus,
  select:focus {
    border-color: var(--primary-color);
    outline: none;
  }

  textarea {
    resize: vertical;
  }

  input[type="file"] {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color var(--transition);
    font-size: 1rem;
  }

  .submit-btn:hover {
    background-color: #0b3426;
  }

  /* ================= SUCCESS POPUP (optional) ================= */
  .popup {
    position: fixed;
    top: 0;
    left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
  }

  .popup.hidden {
    display: none;
  }

  .popup-content {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    max-width: 400px;
  }

  .popup-content button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #1b382b;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
  }

  .popup-content button:hover {
    background-color: #4fc874;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ================= RESPONSIVE ================= */
  @media (max-width: 768px) {
    .ambassador-hero h1 {
      font-size: 2rem;
    }

    .ambassador-hero p {
      font-size: 1rem;
    }

    .ambassador-form {
      padding: 1.5rem;
    }
  }

  .footer {
    background-color: #1b382b;
    color: #ffffff;
    padding: 60px 5% 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-brand img {
    width: 150px;
    margin-bottom: 20px;
  }

  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d9eedd;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #82d89d;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
  }

  .footer-links a:hover {
    color: #4fc874;
  }

  .footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #d9eedd;
  }

  .footer-socials a {
    margin-right: 10px;
    display: inline-block;
  }

  .footer-socials img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
  }

  .footer-socials img:hover {
    opacity: 0.8;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #a5cdb8;
    border-top: 1px solid #2e5546;
    padding-top: 15px;
  }