/* =====================================================
   Contact Page — Premium Luxury Design
   Matches the main site's deep teal/dark luxury theme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal: #1a8c8c;
  --teal-dark: #104044;
  --teal-deep: #0a2e30;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.13);
  --text-primary: #e8f4f4;
  --text-muted: rgba(232, 244, 244, 0.62);
}

.logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--teal-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Contact Header / Hero ─────────────────────────── */
.contact-header {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  background:
    linear-gradient(135deg, rgba(10, 46, 48, 0.80) 0%, rgba(16, 64, 68, 0.65) 100%),
    url('./Images/Contact us.jpg') no-repeat center center / cover;
  background-attachment: fixed;
  position: relative;
}

.contact-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--teal-deep), transparent);
}

.contact-header h1 {
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.contact-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 14px auto 0;
  border-radius: 2px;
}

.contact-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* ── Ratings Strip ─────────────────────────────────── */
.ratings {
  text-align: center;
  padding: 48px 2rem;
  background: linear-gradient(180deg, var(--teal-deep) 0%, #0d3537 100%);
  position: relative;
}

.ratings::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.ratings h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
}

.stars {
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(201, 168, 76, 0.4);
}

#rating-text {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ── Sign Up Section ───────────────────────────────── */
.signup {
  padding: 80px 2rem;
  text-align: center;
  background: #0d3537;
}

.signup h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.signup h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 2rem;
  border-radius: 2px;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

/* Gold top accent line */
.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 22px 22px 0 0;
}

.signup-form .form-group {
  text-align: left;
  margin-bottom: 1.3rem;
}

.signup-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.signup-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.signup-form input::placeholder {
  color: rgba(232, 244, 244, 0.3);
}

.signup-form input:focus {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.btn-primary {
  width: 100%;
  padding: 0.95rem;
  background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
  color: #1a1200;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  margin-top: 0.5rem;
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 168, 76, 0.45);
  filter: brightness(1.08);
}

/* ── Contact Info Section ──────────────────────────── */
.contact-info {
  padding: 80px 2rem 60px;
  text-align: center;
  background: var(--teal-deep);
  max-width: 800px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 12px auto 2rem;
  border-radius: 2px;
}

.contact-info p {
  margin: 0.65rem 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info p strong {
  color: var(--gold-light);
  font-weight: 600;
}

.contact-info a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s;
}

.contact-info a:hover {
  color: var(--white);
  text-decoration: underline;
}

.map-container {
  margin-top: 2rem;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.35s;
}

.map-container:hover {
  filter: grayscale(0%) brightness(1);
}

/* ── Footer ────────────────────────────────────────── */
footer {
  background: #050f10;
  color: rgba(232, 244, 244, 0.4);
  padding: 28px 0;
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid var(--glass-border);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 2.2rem;
  }

  .signup {
    padding: 60px 1.25rem;
  }

  .contact-info {
    padding: 60px 1.25rem 40px;
  }
}