:root {
  --navy: #0a1f44;
  --gold: #c5a572;
  --dark-gold: #a68759;
  --light-gray: #f8f9fa;
  --mid-gray: #e9ecef;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --white: #ffffff;
  --header-height: 88px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 31, 68, 1) 0%,
    rgba(10, 31, 68, 0.95) 60%
  );
  color: var(--white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 60;
  box-shadow: 0 6px 18px rgba(10, 31, 68, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 8px 20px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.brand h1 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 0.6px;
  color: var(--gold);
  margin-bottom: 2px;
}
.brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
}

nav .site-note {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  background: linear-gradient(
    180deg,
    rgba(197, 165, 114, 0.06),
    rgba(0, 0, 0, 0)
  );
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 32px;
}
.hero h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 720px;
  margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(19, 31, 53, 0.06);
  border: 1px solid var(--dark-gold);
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card h3 i {
  color: var(--gold);
  font-size: 24px;
}

.info-item {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--light-gray);
  border-radius: 8px;
}

.info-item i {
  color: var(--navy);
  font-size: 18px;
  margin-top: 2px;
}

.info-item div strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

.info-item div a {
  color: var(--text-dark);
  text-decoration: none;
}

.info-item div a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Social Media */
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-btn.facebook {
  background: #1877f2;
  color: white;
}
.social-btn.twitter {
  background: #000;
  color: white;
}
.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: white;
}
.social-btn.linkedin {
  background: #0077b5;
  color: white;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* QR Code */
.qr-section {
  text-align: center;
  padding: 24px;
  background: var(--light-gray);
  border-radius: 10px;
  margin-top: 20px;
}

.qr-section h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 600;
}

#qrcode {
  display: inline-block;
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Map */
.map-section {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(19, 31, 53, 0.06);
  border: 1px solid var(--dark-gold);
  margin-bottom: 32px;
}

.map-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-section h3 i {
  color: var(--gold);
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.directions-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.form-section {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(19, 31, 53, 0.06);
  border: 1px solid var(--dark-gold);
}

.form-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-section h3 i {
  color: var(--gold);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mid-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--gold), var(--dark-gold));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 165, 114, 0.3);
}

.success-message {
  display: none;
  padding: 16px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: 8px;
  margin-top: 16px;
}

/* Footer */
footer {
  margin-top: 32px;
  padding: 22px;
  border-top: 1px solid var(--mid-gray);
  text-align: center;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 24px;
  }
  .hero h2 {
    font-size: 26px;
  }
  .map-container {
    height: 300px;
  }
  .social-links {
    justify-content: center;
  }
}
