/*CONTACT PAGE*/
.contact-page {
  --contact-dark: #000000;
  --contact-blue: #202c60;
  --contact-yellow: #fccf21;
  --contact-orange: #f97d1a;
  --contact-salmon: #e98059;
}

/* ==========================
   GLOBAL RESET
========================== */
.contact-page * {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

/* HERO */
.contact-page .contact-hero {
  position: relative;
  background: url("../images/gallery2.jpg") center center / cover no-repeat;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 0 10%;
  text-align: center;
  overflow: hidden;
}

.contact-page .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* darkens image slightly */
  z-index: 0;
}

.contact-page .contact-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
}

.contact-page .contact-text-tile {
  background: rgba(0, 0, 0, 0.65); 
  backdrop-filter: blur(4px); 
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-page .contact-text-tile h1 {
  color: var(--contact-yellow);
  font-size: 3rem;
  margin-bottom: 15px;
}

.contact-page .contact-text-tile p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #f0f0f0;
  margin: 0;
}

/* ==========================
   CONTACT DETAILS
========================== */
.contact-page .contact-details {
  background: #fff;
  color: var(--contact-blue);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 70px 10%;
}

.contact-page .contact-card {
  background: #fff;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-page .contact-card:hover {
  transform: translateY(-5px);
  border-color: #fccf21;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-page .contact-card i {
  font-size: 2rem;
  color: var(--contact-orange);
  margin-bottom: 10px;
}

.contact-page .contact-card a {
  color: var(--contact-orange);
  text-decoration: none;
  font-weight: 600;
}

/* ==========================
   HOURS
========================== */
.contact-page .contact-hours {
  background: var(--contact-blue);
  text-align: center;
  padding: 80px 10%;
  color: #fff;
}

.contact-page .contact-hours h2 {
  color: var(--contact-yellow);
  margin-bottom: 35px;
  font-size: 2rem;
  letter-spacing: 1px;
}

.contact-page .hours-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.contact-page .hour-item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(216, 175, 10, 0.607);
  border-radius: 10px;
  padding: 20px 35px;
  min-width: 250px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-page .hour-item:hover {
  transform: translateY(-5px);
  border-color: var(--contact-white);
}

.contact-page .hour-item i {
  color: var(--contact-yellow);
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.contact-page .hour-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================
   FORM
========================== */
.contact-page .contact-form {
  background: #fff;
  color: var(--contact-blue);
  text-align: center;
  padding: 70px 10%;
}

.contact-page .contact-form h2 {
  margin-bottom: 20px;
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-page .contact-form button {
  background: var(--contact-orange);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  margin-top: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-page .contact-form button:hover {
  background: var(--contact-salmon);
}

.contact-page .contact-status {
  margin-top: 10px;
  font-weight: 600;
}

/*    MAP  */
.contact-page .contact-map {
  background: var(--contact-blue);
  color: #fff;
  padding: 40px 10%;
  text-align: center;
}

.contact-page .contact-map h2 {
  color: var(--contact-yellow);
  margin-bottom: 40px;
  font-size: 2rem;
}

.contact-page .findus-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  justify-content: center;
}

.contact-page .findus-map,
.contact-page .findus-info {
  flex: 1 1 500px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-page .findus-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  border-radius: 12px;
}

/* INFO PANEL */
.contact-page .findus-info {
  background: #fff;
  color: var(--contact-blue);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page .findus-info h3 {
  color: var(--contact-orange);
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
}

.contact-page .findus-info p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-page .findus-info .findus-line {
  color: var(--contact-blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.contact-page .findus-info .findus-line i {
  color: var(--contact-orange);
  margin-right: 10px;
}

/* Button */
.contact-page .findus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--contact-orange);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 20px;
  align-self: flex-start;
}

.contact-page .findus-btn:hover {
  background: var(--contact-salmon);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-page .findus-wrapper {
    flex-direction: column;
  }

  .contact-page .findus-map,
  .contact-page .findus-info {
    flex: 1 1 100%;
    min-height: 400px;
  }
}

/* ==========================
   NEWSLETTER
========================== */
.contact-page .contact-newsletter {
  background: #fff;
  color: var(--contact-blue);
  text-align: center;
  padding: 60px 10%;
}

.contact-page .contact-newsletter h2 {
  margin-bottom: 28px;
}

.contact-page .contact-newsletter .subscribe-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 760px;
  margin: 0 auto;
}

.contact-page .contact-newsletter .subscribe-form input[type="email"] {
  width: 380px;
  max-width: 100%;
  height: 56px;
  padding: 0 20px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
  color: #202c60;
  font-size: 1rem;
  margin: 0;
  outline: none;
}

.contact-page .contact-newsletter .subscribe-form input[type="email"]::placeholder {
  color: #6b7280;
}

.contact-page .contact-newsletter .subscribe-form button {
  height: 56px;
  padding: 0 34px;
  background: var(--contact-yellow);
  color: var(--contact-dark);
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

.contact-page .contact-newsletter .subscribe-status {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

/* ==========================
   EMERGENCY
========================== */
.contact-page .contact-emergency {
  background: var(--contact-orange);
  color: #fff;
  text-align: center;
  padding: 60px 10%;
}

.contact-page .contact-btn {
  background: #fff;
  color: var(--contact-orange);
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.contact-page .contact-btn:hover {
  background: var(--contact-salmon);
  color: #fff;
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 900px) {
  .contact-page .contact-text-tile {
    padding: 25px 20px;
  }

  .contact-page .contact-text-tile h1 {
    font-size: 2.2rem;
  }

  .contact-page .contact-text-tile p {
    font-size: 1rem;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to the tile */
.contact-page .contact-text-tile {
  animation: fadeInUp 1s ease-out both;
}
