/* --- PAGE HEADER --- */
.page-header {
  padding: 120px 0;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(rgba(26, 29, 36, 0.7), rgba(26, 29, 36, 0.7)),
    url("https://placehold.co/1920x500/7f8c8d/ffffff?text=Contact+Us") no-repeat
      center center;
  background-size: cover;
  background-attachment: fixed;
  margin-top: -95px;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
}

.page-header .subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CONTACT MAIN SECTION --- */
.contact-main-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: stretch;
}

/* --- Contact Details Card --- */
.contact-details-card {
  background: #1a1d24;
  color: #bdc3c7;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.details-header {
  text-align: center;
  margin-bottom: 40px;
}
.details-header img {
  margin-bottom: 20px;
}
.details-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.details-list {
  list-style: none;
  margin-bottom: 40px;
}
.details-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.details-list i {
  font-size: 1.2rem;
  color: #91c63c;
  width: 20px;
  text-align: center;
}
.details-list a,
.details-list span {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.details-list a:hover {
  color: #91c63c;
}
.details-socials {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.details-socials a {
  color: #bdc3c7;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bdc3c7;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}
.details-socials a:hover {
  background-color: #91c63c;
  color: #1a1d24;
  border-color: #91c63c;
}

/* --- Contact Form --- */
.contact-form-wrapper {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-grid-names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #91c63c;
  box-shadow: 0 0 0 3px rgba(145, 198, 60, 0.2);
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #888;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating label effect */
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 12px;
  font-size: 0.8rem;
  color: #91c63c;
  background-color: #ffffff;
  padding: 0 5px;
}

.btn-submit-contact {
  width: 100%;
  padding: 18px;
  border: none;
  background: #91c63c;
  color: #1a1d24;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit-contact:hover {
  background: #a4e04b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(145, 198, 60, 0.3);
}

/* --- LOCATION & HOURS SECTION --- */
.location-section {
  padding: 80px 0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: stretch;
}
.opening-hours-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 60px;
  height: 4px;
  background-color: #91c63c;
  border-radius: 2px;
}
.hours-icon {
  font-size: 3rem;
  color: #91c63c;
  margin-bottom: 20px;
}
.hours-text {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}
.hours-text span {
  font-weight: 600;
}
.closed-text {
  margin-top: 20px;
  color: #e74c3c;
  font-weight: 500;
}
.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  min-height: 400px;
}

/* --- REVEAL ON SCROLL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
}
