/* ================================================================
   contact.css  —  Arka Associates Contact Page Styles
   ================================================================ */

/* ===== CONTACT HERO ===== */
.contact-hero {
  background: linear-gradient(135deg, rgba(46,70,130,0.65) 0%, rgba(80,222,200,0.25) 100%),
              url("https://avantage.bold-themes.com/accountant/wp-content/uploads/sites/6/2019/04/img-slider-03.jpg")
              center center / cover no-repeat;
}

/* ================================================================
   SECTION 1: GET IN TOUCH — teal gradient BG, pill form, woman image
   ================================================================ */
.contact-touch-section {
  background: linear-gradient(135deg, #3ecfbf 0%, #50dec8 40%, #8ee8e0 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.contact-touch-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: 560px;
}

/* --- Left: heading + form --- */
.contact-touch-left { padding-right: 60px; }

.contact-touch-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.contact-touch-label span {
  display: block;
  width: 32px;
  height: 2px;
  background: #fff;
}
.contact-touch-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.contact-touch-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 10px;
}
.contact-touch-required {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* Pill inputs */
.contact-touch-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-touch-form input,
.contact-touch-form textarea {
  width: 100%;
  padding: 16px 26px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 14.5px;
  color: #444;
  background: rgba(255,255,255,0.92);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.contact-touch-form textarea {
  border-radius: 24px;
  resize: vertical;
  min-height: 130px;
  padding: 16px 26px;
}
.contact-touch-form input::placeholder,
.contact-touch-form textarea::placeholder { color: #999; }
.contact-touch-form input:focus,
.contact-touch-form textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}

/* Ghost submit button */
.contact-touch-submit {
  margin-top: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-touch-submit:hover { background: #fff; color: #3ecfbf; }

.touch-form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
.touch-form-success i { font-size: 18px; }

/* --- Right: woman image --- */
.contact-touch-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: 100%;
  min-height: 500px;
}
.contact-touch-img {
  height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  display: block;
  position: absolute;
  bottom: -80px;
  right: 0;
}

/* ================================================================
   SECTION 2: VISIT US — white left info + full-height map right
   ================================================================ */
.contact-visit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

/* Left info panel */
.contact-visit-left {
  background: #fff;
  padding: 70px 60px 70px 40px;
}
.contact-visit-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #50dec8;
  margin-bottom: 12px;
}
.contact-visit-label span {
  display: block;
  width: 32px;
  height: 2px;
  background: #50dec8;
}
.contact-visit-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #191919;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-visit-desc {
  font-size: 14.5px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-visit-divider,
.contact-visit-bottom-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 30px;
}
.contact-visit-bottom-divider { margin-top: 30px; margin-bottom: 0; }

/* 2x2 Office info grid */
.contact-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.contact-visit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-visit-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid #50dec8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #50dec8;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.3s, color 0.3s;
}
.contact-visit-item:hover .contact-visit-icon {
  background: #50dec8;
  color: #fff;
}
.contact-visit-info h4 {
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #191919;
  margin: 0 0 6px;
}
.contact-visit-info p {
  font-size: 13.5px;
  color: #888;
  line-height: 1.65;
  margin: 0;
}
.contact-visit-info a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-visit-info a:hover { color: #50dec8; }

/* Right: full-height map */
.contact-visit-right { position: relative; }
.contact-visit-right iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  border: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .contact-touch-wrap  { grid-template-columns: 1fr; min-height: auto; padding: 0 24px; }
  .contact-touch-left  { padding-right: 0; }
  .contact-touch-right { display: none; }
  .contact-visit-section { grid-template-columns: 1fr; }
  .contact-visit-left  { padding: 55px 24px; }
  .contact-visit-right iframe { min-height: 350px; }
}
@media (max-width: 768px) {
  .contact-touch-section { padding: 55px 0; }
  .contact-visit-grid  { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 480px) {
  .contact-touch-submit { width: 100%; justify-content: center; }
  .contact-touch-title  { font-size: 2rem; }
}
