/* ══════════════════════════════════════════════════
   CONTACT PAGE — contact.css
══════════════════════════════════════════════════ */

/* ── PAGE BANNER ─────────────────────────────── */
.logo-class{
    height: 30px !important;
    object-fit: contain;
}
.logo-class-header{
    height: 55px !important;
    object-fit: contain;
}
.page-banner {
  position: relative;
  height: 340px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.page-banner-bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1559757175-0eb30cd8c063?w=1600&q=80')
    center/cover no-repeat;
  z-index: 0; transform: scale(1.04);
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,46,42,0.82) 0%, rgba(52,143,122,0.72) 100%);
  z-index: 1;
}
.page-banner-content { position: relative; z-index: 2; text-align: center; }
.page-banner-title {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(40px, 6vw, 72px); font-weight: 900; color: #fff;
  letter-spacing: -1px; margin-bottom: 18px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.breadcrumb a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.breadcrumb a:hover { color: #C9A84C; }
.breadcrumb a i { font-size: 12px; }
.breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 10px; }
.breadcrumb-current { color: #C9A84C; font-size: 14px; font-weight: 600; }

/* ══════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════ */
.contact-section {
  background: #fff;
  padding: 80px 60px 90px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ── Info cards (left column) ── */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cinfo-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 6px;
  overflow: hidden;
  padding: 24px 28px;
  position: relative;
}
.phone-grad { background: linear-gradient(135deg, #C9A84C 0%, #348F7A 100%); }
.email-grad { background: linear-gradient(135deg, #b89a3e 0%, #267060 100%); }
.addr-grad  { background: linear-gradient(135deg, #9a7e30 0%, #1e5a50 100%); }

/* White circle wrapping the icon */
.cinfo-icon-wrap {
  width: 60px; height: 60px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.22);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
}

.cinfo-text { flex: 1; }

.cinfo-text h4 {
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.cinfo-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* Address card - icon at top */
.address-card { align-items: flex-start; padding-top: 28px; padding-bottom: 28px; }
.address-card .cinfo-icon-wrap { margin-top: 2px; }

/* ── Form side ── */
.contact-heading {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.contact-heading-green { color: var(--primary); }

.contact-subheading {
  font-size: 14px; color: #78787B;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Form layout */
.cform { display: flex; flex-direction: column; gap: 14px; }

.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cform-field { position: relative; }

.cform input,
.cform textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #dde8e5;
  border-radius: 0;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cform input:focus,
.cform textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(52,143,122,0.08);
}
.cform input::placeholder,
.cform textarea::placeholder { color: #aab8b5; }
.cform textarea { resize: vertical; min-height: 130px; }

/* Simulated reCAPTCHA */
.captcha-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9f9;
  border: 1px solid #dde8e5;
  padding: 14px 18px;
  width: 260px;
  border-radius: 2px;
}
.captcha-checkbox {
  width: 24px; height: 24px;
  border: 2px solid #c0c0c0;
  border-radius: 2px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.captcha-checkbox.checked { border-color: var(--primary); }
.captcha-label {
  font-size: 14px; color: #444;
  flex: 1;
}
.captcha-logo {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 11px; color: #888;
}
.captcha-logo i { font-size: 20px; color: var(--primary); }
.captcha-links { font-size: 9px; color: #aaa; }

/* Send button */
.btn-send {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary);
  color: #fff;
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 40px;
  border: none; border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  width: fit-content;
}
.btn-send:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,143,122,0.3);
}

/* ══════════════════════════════════════════════
   MAP
══════════════════════════════════════════════ */
.map-wrap {
  width: 100%;
  line-height: 0;
  border-top: 4px solid var(--primary);
}
.map-wrap iframe { width: 100%; display: block; }

/* ── MOBILE ─────────────────────────────── */
@media (max-width: 900px) {
  .contact-section { padding: 60px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .cform-row { grid-template-columns: 1fr; }
  .captcha-mock { width: 100%; }
  .page-banner { height: 240px; }
}

/* Extra mobile fixes */  
@media (max-width: 768px) {
  .contact-section { padding: 50px 20px 60px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .cform-row { grid-template-columns: 1fr; }
  .captcha-mock { width: 100%; max-width: 280px; }
  .btn-send { width: 100%; justify-content: center; }
  .map-wrap iframe { height: 300px; }
}