/* ── Hero ── */
.hero {
  position: relative !important;
  width: 100% !important;
  min-height: 320px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #e8edf5 0%, #dde4f0 100%) !important;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.45);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: #334155;
  max-width: 520px;
  line-height: 1.65;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #1e293b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #667eea;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 768px) {

  /* .hero { min-height: 44vh !important; } */
  .hero .container {
    padding: 3rem 1.2rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .hero p {
    font-size: 0.93rem;
  }

  .hero-badge {
    font-size: 0.76rem;
  }
}

/* ── Page ── */
.page-content {
  background: linear-gradient(160deg, #f1f5f9 0%, #e8edf5 100%);
  padding: 0;
  min-height: 60vh;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* ── Contact Page Wrapper ── */
.contact-page {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 44px 24px 32px;
  box-sizing: border-box;
}

/* ══════════════════════════════
   LEFT PANEL
══════════════════════════════ */
.contact-left {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  border: 1px solid #e8edf5;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.09);
}

.info-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.info-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon-wrap i {
  font-size: 1.4rem;
  color: #667eea;
}

.info-head h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.info-head p {
  display: none;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border: 1px solid #c7d2fe;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: #4338ca;
}

.response-badge i {
  color: #667eea;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: #1e293b;
  transition: background 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}

a.info-card {
  cursor: pointer;
}

a.info-card:hover {
  background: white;
  transform: translateX(4px);
  border-color: #c7d2fe;
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
}

.info-card-icon {
  display: none;
}

.info-card>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-card strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

.info-card span {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.45;
}

.info-card-arrow {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.social-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 0;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #64748b;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-btn.ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.social-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-btn.tw:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

/* ══════════════════════════════
   RIGHT PANEL
══════════════════════════════ */
.contact-right {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.09);
  border: 1px solid #e8edf5;
  box-sizing: border-box;
}

.form-head {
  margin-bottom: 24px;
}

.form-head h2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 6px;
}

.form-head p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: #667eea;
  font-size: 0.82rem;
}

.form-group input,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 11px;
  font-size: 0.93rem;
  font-family: inherit;
  background: #f8fafc;
  color: #1e293b;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

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

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 11px 40px 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 11px;
  font-size: 0.93rem;
  font-family: inherit;
  background: #f8fafc;
  color: #1e293b;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}

.select-wrap select:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.8rem;
  pointer-events: none;
}

.submit-btn {
  padding: 13px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
  width: 100%;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

/* ══════════════════════════════
   FAQ Section
══════════════════════════════ */
.faq-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px 56px;
  box-sizing: border-box;
  border-top: 1px solid #e8edf5;
  margin-top: 8px;
}

.faq-head {
  text-align: center;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.faq-head-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-head-icon i {
  color: #667eea;
  font-size: 1.3rem;
}

.faq-head h2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
}

.faq-head p {
  color: #64748b;
  font-size: 0.92rem;
  margin: 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: #c7d2fe;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.10);
}

.faq-item.open {
  border-color: #667eea;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.14);
  border-left: 4px solid #667eea;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1e293b;
  user-select: none;
}

.faq-icon {
  color: #94a3b8;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: transform 0.25s, color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: #667eea;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  padding: 0 18px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  border-top: 0px solid transparent;
  transition: max-height 0.35s ease, padding 0.35s ease, border-top 0.2s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 12px 18px 16px;
  border-top: 1px solid #f1f5f9;
}

/* ── Shimmer ── */
@keyframes shimmerSweep {
  0% {
    background-position: -400px 0;
  }

  100% {
    background-position: 400px 0;
  }
}

.shimmer-title,
.shimmer-text,
.shimmer-form-field,
.shimmer-button,
.shimmer-info-card {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, #e8edf5 25%, #f8fafc 50%, #e8edf5 75%);
  background-size: 800px 100%;
  animation: shimmerSweep 1.5s ease-in-out infinite;
}

.shimmer-title {
  width: 45%;
  height: 24px;
  margin-bottom: 16px;
}

.shimmer-text {
  width: 100%;
  height: 13px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.shimmer-text.short {
  width: 65%;
}

.shimmer-form-field {
  width: 100%;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 10px;
}

.shimmer-form-field.large {
  height: 130px;
}

.shimmer-button {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 0;
}

.shimmer-info-card {
  width: 100%;
  height: 64px;
  border-radius: 12px;
}

/* shimmer panel wrappers — match real panels */
.shimmer-left-panel {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid #e8edf5;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shimmer-right-panel {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid #e8edf5;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shimmer-faq-card {
  display: block;
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(90deg, #e8edf5 25%, #f8fafc 50%, #e8edf5 75%);
  background-size: 800px 100%;
  animation: shimmerSweep 1.5s ease-in-out infinite;
  margin-bottom: 10px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-left {
    position: static;
  }

  .info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding: 20px 14px 24px;
  }

  .faq-section {
    padding: 0 14px 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .contact-right {
    padding: 24px 18px;
  }

  .contact-left {
    padding: 24px 18px;
  }
}

/* ══════════════════════════════════════════
   DARK MODE
   ══════════════════════════════════════════ */
html.dark-mode body,
body.dark-mode {
  background: #0d1117 !important;
  color: #e6edf3 !important;
  transition: none !important;
}

html.dark-mode .page-content,
body.dark-mode .page-content {
  background: #161b22 !important;
  transition: none !important;
}

/* Hero */
html.dark-mode .hero::before,
body.dark-mode .hero::before {
  background: rgba(13, 17, 23, 0.55) !important;
}

html.dark-mode .hero-badge,
body.dark-mode .hero-badge {
  background: rgba(124, 106, 247, 0.18) !important;
  border-color: rgba(124, 106, 247, 0.35) !important;
  color: #c9d1d9 !important;
}

html.dark-mode .hero-badge-dot,
body.dark-mode .hero-badge-dot {
  background: #a78bfa !important;
}

html.dark-mode .hero h1,
body.dark-mode .hero h1 {
  color: #e6edf3 !important;
}

html.dark-mode .hero p,
body.dark-mode .hero p {
  color: #8b949e !important;
}

/* Contact panels */
html.dark-mode .contact-left,
body.dark-mode .contact-left,
html.dark-mode .contact-right,
body.dark-mode .contact-right {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
  transition: none !important;
}

/* Info head */
html.dark-mode .info-head h2,
body.dark-mode .info-head h2 {
  color: #e6edf3 !important;
}

html.dark-mode .info-head p,
body.dark-mode .info-head p {
  color: #8b949e !important;
}

html.dark-mode .info-icon-wrap,
body.dark-mode .info-icon-wrap {
  background: rgba(124, 106, 247, 0.15) !important;
}

html.dark-mode .info-icon-wrap i,
body.dark-mode .info-icon-wrap i {
  color: #a78bfa !important;
}

/* Response badge */
html.dark-mode .response-badge,
body.dark-mode .response-badge {
  background: rgba(124, 106, 247, 0.1) !important;
  border-color: rgba(124, 106, 247, 0.3) !important;
  color: #a78bfa !important;
}

html.dark-mode .response-badge i,
body.dark-mode .response-badge i {
  color: #a78bfa !important;
}

/* Info cards */
html.dark-mode .info-card,
body.dark-mode .info-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #e6edf3 !important;
  transition: none !important;
}

html.dark-mode a.info-card:hover,
body.dark-mode a.info-card:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
  box-shadow: 0 4px 14px rgba(124, 106, 247, 0.15) !important;
}

html.dark-mode .info-card strong,
body.dark-mode .info-card strong {
  color: #e6edf3 !important;
}

html.dark-mode .info-card span,
body.dark-mode .info-card span {
  color: #8b949e !important;
}

html.dark-mode .info-card-arrow,
body.dark-mode .info-card-arrow {
  color: #484f58 !important;
}


html.dark-mode .social-btn,
body.dark-mode .social-btn {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
}

/* Form */
html.dark-mode .form-head p,
body.dark-mode .form-head p {
  color: #8b949e !important;
}

html.dark-mode .form-group label,
body.dark-mode .form-group label {
  color: #c9d1d9 !important;
}

html.dark-mode .form-group label i,
body.dark-mode .form-group label i {
  color: #a78bfa !important;
}

html.dark-mode .form-group input,
html.dark-mode .form-group textarea,
html.dark-mode .select-wrap select,
body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .select-wrap select {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #e6edf3 !important;
}

html.dark-mode .form-group input::placeholder,
html.dark-mode .form-group textarea::placeholder,
body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
  color: #484f58 !important;
}

html.dark-mode .form-group input:focus,
html.dark-mode .form-group textarea:focus,
html.dark-mode .select-wrap select:focus,
body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus,
body.dark-mode .select-wrap select:focus {
  border-color: #7c6af7 !important;
  background: #21293d !important;
  box-shadow: 0 0 0 3px rgba(124, 106, 247, 0.15) !important;
}

html.dark-mode .select-arrow,
body.dark-mode .select-arrow {
  color: #484f58 !important;
}

/* FAQ section */
html.dark-mode .faq-section,
body.dark-mode .faq-section {
  border-top-color: #30363d !important;
}

html.dark-mode .faq-head p,
body.dark-mode .faq-head p {
  color: #8b949e !important;
}

html.dark-mode .faq-head-icon,
body.dark-mode .faq-head-icon {
  background: rgba(124, 106, 247, 0.15) !important;
}

html.dark-mode .faq-head-icon i,
body.dark-mode .faq-head-icon i {
  color: #a78bfa !important;
}

html.dark-mode .faq-item,
body.dark-mode .faq-item {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}

html.dark-mode .faq-item:hover,
body.dark-mode .faq-item:hover {
  border-color: #7c6af7 !important;
}

html.dark-mode .faq-item.open,
body.dark-mode .faq-item.open {
  background: #1c2333 !important;
  border-color: #7c6af7 !important;
  border-left-color: #7c6af7 !important;
}

html.dark-mode .faq-q,
body.dark-mode .faq-q {
  color: #e6edf3 !important;
}

html.dark-mode .faq-icon,
body.dark-mode .faq-icon {
  color: #484f58 !important;
}

html.dark-mode .faq-item.open .faq-icon,
body.dark-mode .faq-item.open .faq-icon {
  color: #a78bfa !important;
}

html.dark-mode .faq-a,
body.dark-mode .faq-a {
  color: #8b949e !important;
  border-top-color: #30363d !important;
}

/* ── Shimmer — dark mode ── */
html.dark-mode .shimmer-title,
html.dark-mode .shimmer-text,
html.dark-mode .shimmer-form-field,
html.dark-mode .shimmer-button,
html.dark-mode .shimmer-info-card,
html.dark-mode .shimmer-faq-card,
body.dark-mode .shimmer-title,
body.dark-mode .shimmer-text,
body.dark-mode .shimmer-form-field,
body.dark-mode .shimmer-button,
body.dark-mode .shimmer-info-card,
body.dark-mode .shimmer-faq-card {
  background: linear-gradient(90deg, #1c2333 25%, #252f3f 50%, #1c2333 75%) !important;
  background-size: 800px 100% !important;
  animation: shimmerSweep 1.5s ease-in-out infinite !important;
}

html.dark-mode .shimmer-left-panel,
html.dark-mode .shimmer-right-panel,
body.dark-mode .shimmer-left-panel,
body.dark-mode .shimmer-right-panel {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4) !important;
}