/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BRAND COLORS ================= */
:root {
  --brand-blue: #1F6F8B;
  --brand-blue-dark: #0F3F4E;
  --brand-brown: #C2A26A;
}

/* ================= BODY ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(
      rgba(31,111,139,0.75),
      rgba(15,63,78,0.75)
    ),
    url('Contactbackground.jpg') no-repeat center center / cover;
  color: #fff;
  min-height: 100vh;
}

/* ================= NAVBAR ================= */
.lux-navbar {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 45px;
}

.nav-logo span {
  color: var(--brand-brown);
  font-weight: 700;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-brown);
}

/* BOOK BUTTON */
.nav-btn {
  background: linear-gradient(135deg, var(--brand-brown), #e6d3a3);
  color: var(--brand-blue-dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--brand-brown);
  cursor: pointer;
}

/* ================= MOBILE NAV ================= */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: var(--brand-blue);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    gap: 15px;
  }

  .nav-links.show {
    display: flex;
  }
}

/* ================= PAGE HEADER ================= */
.page-header {
  padding: 130px 10% 40px;
  text-align: center;
}

.page-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  color: #e0e0e0;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 10px;
}

/* ================= CONTACT INFO ================= */
.contact-info {
  margin-bottom: 25px;
}

.contact-info a {
  color: #fff;
  text-decoration: underline;
}

/* ================= FORM ================= */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* LABELS */
form label {
  font-weight: 600;
}

/* INPUTS */
input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  outline: none;
}

/* DATE FIX */
input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

/* ================= SUBJECT DROPDOWN FIX ================= */
select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.25); /* FIXED visibility */
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
}

select option {
  background: #0F3F4E;
  color: #fff;
}

/* ================= FOCUS ================= */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-brown);
  box-shadow: 0 0 8px rgba(194,162,106,0.4);
}

/* ================= PLACEHOLDERS ================= */
::placeholder {
  color: rgba(255,255,255,0.7);
}

/* ================= TEXTAREA ================= */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* ================= BUTTON ================= */
button {
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: var(--brand-brown);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #a88b50;
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 52px;
  color: #fff;
  text-decoration: none;
}