/* ============================
   CONTACT US PAGE
   ============================ */

/* INTRO */
.contact-intro {
  background: linear-gradient(rgba(249,249,249,0.94), rgba(249,249,249,0.94)),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600') center/cover no-repeat fixed;
  padding: 80px 0 20px;
}

.contact-label {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: #c9a84c;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 8px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 18px;
  line-height: 1.3;
}

.contact-section-title span {
  color: #c9a84c;
}

.contact-text {
  color: #555;
  font-size: 15px;
  line-height: 1.85;
}

/* INFO CARDS */
.contact-main {
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600') center/cover no-repeat fixed;
  padding: 0 0 80px;
}

.contact-info-card {
  background: #0f2a3c;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(15,42,60,0.25);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-info-icon i {
  font-size: 22px;
  color: #c9a84c;
}

.contact-info-card h5 {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

.contact-info-card p a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-card p a:hover {
  color: #c9a84c;
}

/* CONTACT FORM BOX */
.contact-form-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 35px;
  border: 1px solid #eee;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  height: 100%;
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #0f2a3c;
  margin-bottom: 6px;
}

.contact-form-subtitle {
  color: #777;
  font-size: 13.5px;
  margin-bottom: 28px;
}

.contact-form-label {
  color: #0f2a3c;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.contact-form-input {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  transition: all 0.3s ease;
}

.contact-form-input::placeholder {
  color: #aaa;
}

.contact-form-input:focus {
  border-color: #c9a84c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  color: #333;
}

select.contact-form-input option {
  background: #fff;
  color: #333;
}

.contact-form-btn {
  background: linear-gradient(135deg, #c9a84c 0%, #b8923e 100%);
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.contact-form-btn:hover {
  background: linear-gradient(135deg, #e0c065 0%, #c9a84c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

/* SIDEBAR */
.contact-sidebar {
  background: #0f2a3c;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-sidebar-header {
  background: linear-gradient(135deg, #c9a84c 0%, #b8923e 100%);
  padding: 28px 28px 22px;
}

.contact-sidebar-header h4 {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-sidebar-header p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin: 0;
}

/* Quick Links */
.contact-quick-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.contact-quick-link:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 28px;
}

.quick-link-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-quick-link.whatsapp .quick-link-icon {
  background: rgba(37,211,102,0.15);
  color: #25d366;
}

.contact-quick-link.phone .quick-link-icon {
  background: rgba(52,152,219,0.15);
  color: #3498db;
}

.contact-quick-link.email .quick-link-icon {
  background: rgba(231,76,60,0.15);
  color: #e74c3c;
}

.contact-quick-link.visit .quick-link-icon {
  background: rgba(201,168,76,0.15);
  color: #c9a84c;
}

.contact-quick-link h6 {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 2px;
}

.contact-quick-link p {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  margin: 0;
}

.contact-quick-link .fa-chevron-right {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  transition: all 0.3s;
}

.contact-quick-link:hover .fa-chevron-right {
  color: #c9a84c;
  transform: translateX(3px);
}

/* Social */
.contact-social {
  padding: 22px 24px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-social h6 {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
}

.contact-social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background: #c9a84c;
  color: #0f2a3c;
  transform: translateY(-3px);
}

/* MAP */
.contact-map {
  padding: 80px 0;
  background: linear-gradient(rgba(249,249,249,0.95), rgba(249,249,249,0.95)),
    url('https://images.unsplash.com/photo-1524813686514-a57563d77965?w=1600') center/cover no-repeat fixed;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* CTA */
.contact-cta {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600') center/cover no-repeat fixed;
  padding: 80px 0;
}

.contact-cta h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 14px;
}

.contact-cta h2 span {
  color: #c9a84c;
}

.contact-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.75;
}

.btn-contact-cta {
  background: #c9a84c;
  color: #0f2a3c;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-contact-cta:hover {
  background: #e0c065;
  color: #0f2a3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.btn-contact-cta-outline {
  background: transparent;
  color: #c9a84c;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 50px;
  border: 2px solid #c9a84c;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-left: 14px;
  text-decoration: none;
  display: inline-block;
}

.btn-contact-cta-outline:hover {
  background: #c9a84c;
  color: #0f2a3c;
  transform: translateY(-2px);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
  .contact-section-title {
    font-size: 28px;
  }
  .contact-cta h2 {
    font-size: 28px;
  }
  .contact-form-box {
    padding: 30px 24px;
  }
  .contact-cta {
    padding-bottom: 100px;
  }
  .contact-main .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-intro {
    padding: 50px 0 10px;
  }
  .contact-main {
    padding: 0 0 50px;
  }
  .contact-map,
  .contact-cta {
    padding: 50px 0;
  }
  .contact-cta {
    padding-bottom: 100px;
  }
  .contact-section-title {
    font-size: 22px;
  }
  .contact-cta h2 {
    font-size: 20px;
  }
  .contact-form-box {
    padding: 24px 18px;
  }
  .contact-form-box h3 {
    font-size: 18px;
  }
  .btn-contact-cta,
  .btn-contact-cta-outline {
    display: block;
    width: 100%;
    text-align: center;
  }
  .btn-contact-cta-outline {
    margin-left: 0;
    margin-top: 12px;
  }
  .contact-map iframe {
    height: 300px;
  }
  .contact-info-card {
    padding: 24px 18px;
  }
}
