/* ── CONTACT HERO ── */
.contact-hero {
  position: relative;
  background: var(--brand);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
  color: var(--white);
}

.contact-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.contact-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.hero h1 .gt {
  background: linear-gradient(100deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTACT CARDS (4 Columns) ── */
.contact-cards {
  background: var(--white);
  padding: 4rem 0;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media(min-width: 600px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all .3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 180, 216, 0.3);
}

.cc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.cc-icon svg {
  width: 26px;
  height: 26px;
}

.contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.5rem;
}

.cc-primary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.cc-primary a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

.cc-primary a:hover {
  color: var(--accent);
}

.cc-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* ── FORM & INFO LAYOUT ── */
.form-section {
  background: var(--slate-50);
  padding: 4rem 0 6rem;
}

.layout-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media(min-width: 900px) {
  .layout-2-cols {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.contact-form-wrapper {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper .section-header {
  margin-bottom: 2rem;
}

.contact-form-wrapper .section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .section-header p {
  color: var(--slate-600);
  font-size: 0.95rem;
}

/* Form Styles */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media(min-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--slate-900);
  background: var(--slate-50);
  transition: all .3s ease;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-hint {
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--brand);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1.1rem;
}

.form-terms {
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-500);
  margin-top: 1rem;
}

.form-terms a {
  color: var(--accent);
  text-decoration: underline;
}

/* ── FORM ALERT MESSAGES ── */
.form-alert {
  padding: .85rem 1rem;
  border-radius: 12px;
  font-family: var(--font);
  font-size: .85rem;
  margin-bottom: 1.25rem;
  display: none;
}

.form-alert.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  display: block;
}

.form-alert.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  display: block;
}

.form-alert.show {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.form-alert span {
  display: block;
}

/* ── FIELD ERROR STATE ── */
input.field-error,
select.field-error,
textarea.field-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, .04) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12) !important;
}

/* ── SPINNER ── */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── SUBMIT BUTTON DISABLED STATE ── */
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Info Cards */
.info-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.check-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.15);
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list li span svg {
  width: 12px;
  height: 12px;
}

.info-card.highlight {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(100, 255, 218, 0.05));
  border: 1px solid rgba(0, 180, 216, 0.15);
  display: flex;
  gap: 1.25rem;
}

.info-card.highlight .ic-icon {
  width: 50px;
  height: 50px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.info-card.highlight .ic-icon svg {
  width: 24px;
  height: 24px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ── FAQ ── */
.contact-page .hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 1.75rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  transition: all .3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}