/* ===========================
   CONTACT PAGE STYLES
   =========================== */

.contact-hero {
  padding: 9rem 0 7rem;
  position: relative;
  overflow: hidden;
}



.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(139,92,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.ch-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: flex-start;
}

.ch-text .section-tag { margin-bottom: 1rem; }

.ch-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.ch-text > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* CONTACT CARDS */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.cc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-card strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.contact-card span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-card a {
  color: var(--purple-light);
}

.contact-card a:hover { color: var(--orange-light); }

/* QUICK CONNECT */
.quick-connect h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-family: 'Syne', sans-serif;
}

.quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.3s;
}

.s-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.linkedin-btn:hover {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #fff;
  transform: translateY(-2px);
}

.fb-btn:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  transform: translateY(-2px);
}

.ig-btn:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* FORM */
.quote-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(59,130,246,0.1));
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.form-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.form-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.quote-form {
  padding: 2rem 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

input, select, textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: all 0.3s;
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

input::placeholder, textarea::placeholder {
  color: var(--text-muted);
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c5a6e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.checkbox-group {
  margin: 1.25rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  color: var(--text-secondary) !important;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--purple);
  margin-top: 2px;
}

.btn-full {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 1rem;
  margin-top: 0.5rem;
  transition: all 0.4s;
}

@media (max-width: 768px) {
  .btn-full {
    width: 100%;
    display: block;
    margin: 0.5rem auto 0 auto;
    text-align: center;
  }
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  overflow: hidden;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.waf-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s;
  margin-left: 0;
}

.whatsapp-float:hover {
  border-radius: 28px;
  width: auto;
  padding: 0 1.25rem 0 1rem;
  gap: 0.5rem;
}

.whatsapp-float:hover .waf-label {
  max-width: 80px;
  opacity: 1;
  margin-left: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ch-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .quote-form { padding: 1.5rem; }
  .form-header { padding: 1.5rem; }
  .quick-btns { flex-direction: column; }
  .whatsapp-btn, .social-cta-btn { justify-content: center; }
}

.logo {
  width: 3.5vw;      /* scales with screen */
  max-width: 150px; /* prevents it getting huge */
  height: auto;
}

.logo-main {
  width: 20vw;      /* scales with screen */
  max-width: 750px; /* prevents it getting huge */
  height: auto;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .logo {
    width: 12vw;       /* doubled from 3.5vw */
    max-width: 160px; /* slightly adjusted for mobile */
  }

  .logo-main {
    width: 40vw;       /* doubled from 20vw */
    max-width: 500px;  /* keeps it from becoming ridiculous */
    margin-bottom: 10px;
  }
}
