/* --------------------
   Contact Hero
-------------------- */
.contact-hero {
  position: relative;
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.contact-hero .hero-overlay {
  background: rgba(0,0,0,0.6);
  padding: 20px 30px;
  border-radius: 10px;
}
.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.contact-hero p {
  font-size: 1.2rem;
}

/* --------------------
   Get In Touch Section
-------------------- */
.get-in-touch {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}
.get-in-touch .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0077ff;
}
.get-in-touch .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}
.contact-box h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
  color: #222;
}
.contact-box p {
  font-size: 1rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* Icon Circles */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}
.bg-blue   { background: #0077ff; }
.bg-green  { background: #28a745; }
.bg-red    { background: #dc3545; }
.bg-orange { background: #fd7e14; }

/* --------------------
   Contact Wrapper (Form + Map)
-------------------- */
.contact-wrapper {
  padding: 60px 20px;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #0077ff;
  text-align: center;
}
.form-group {
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #0077ff;
  box-shadow: 0px 0px 8px rgba(0,119,255,0.3);
  outline: none;
}
.btn-submit {
  background: #0077ff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}
.btn-submit:hover {
  background: #0056cc;
}

/* Google Map */
.map-box {
  flex: 1;
  min-width: 320px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}

/* --------------------
   Responsive
-------------------- */
@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }
  .map-box {
    height: 300px;
  }
}
.contact-box a {
  color: #0077ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-box a:hover {
  color: #0056cc;
  text-decoration: underline;
}

/* Smooth hover effect */
.contact-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}
/* Hide details initially */
.contact-detail {
  display: none;
  margin-top: 10px;
  font-size: 1rem;
}

.contact-box.active .contact-detail {
  display: block;
}

.contact-box {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}
/* Email box as a link */
.email-box {
  text-decoration: none;
  color: inherit;
  display: block;
}
.email-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}
/* Phone & Email as clickable boxes */
.phone-box, .email-box {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phone-box:hover, .email-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}

/* Reveal for Address */
.contact-detail {
  display: none;
  margin-top: 10px;
  font-size: 1rem;
}
.contact-box.active .contact-detail {
  display: block;
}
/* Make all cards clickable links */
.phone-box, .email-box, .address-box {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phone-box:hover, .email-box:hover, .address-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.2);
}
