/* Contact Page Styles */

/* Hero Section Customization */
.contact-hero {
  background-color: rgba(0, 0, 0, 0.7);
}

.contact-hero .hero-image {
  background-image: url('images/DSC00111\ copy.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.contact-hero .hero-content {
  text-align: center;
}

/* Contact Section Styles */
.contact-section {
  padding: 100px 0;
  background-color: #121212;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: #d4af37; /* Gold accent color */
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #d4af37; /* Gold accent color */
}

.social-connect h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.contact-social {
  margin-bottom: 0;
}

/* Contact Form Styles */
.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: rgba(30, 30, 30, 0.5);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #fff;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #d4af37;
  outline: none;
}

.submit-btn {
  background-color: #d4af37;
  color: #000;
  font-weight: 600;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background-color: #e5c158;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Form status messages */
.form-status {
  margin: 10px 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  min-height: 18px;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.95;
}
.form-status.pending {
  color: #cfa63b;
}
.form-status.success {
  color: #4caf50;
}
.form-status.error {
  color: #ff6b6b;
}

/* Map Section Styles */
.map-section {
  padding: 80px 0;
  background-color: #0a0a0a;
  text-align: center;
}

.map-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 450px;
  background-color: #1e1e1e;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .map-placeholder {
    height: 350px;
  }
}

/* Additional mobile menu fixes for contact page */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease;
    z-index: 999;
    overflow-y: auto; /* Allow scrolling if menu is tall */
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 10px 20px;
    display: inline-block;
    width: 80%;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    position: absolute;
    top: 18px;
    right: 20px;
  }

  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Ensure visibility of mobile menu button specifically on contact page */
  body.contact-page .mobile-menu-btn {
    display: flex !important;
    position: fixed;
    top: 18px;
    right: 20px;
  }
}

/* Safety override: ensure mobile menu button shows on very narrow screens */
@media (max-width: 480px) {
  .mobile-menu-btn {
    display: flex !important;
  }
  .nav .nav-container {
    position: relative;
  }
}
