/* Contact page styles */
.contact-page {
  background: var(--bg-main-dark, #0a0b0d);
  min-height: 100vh;
  padding: 80px 0 40px;
  color: var(--text-main-dark, #fff);
}
.contact-page .max-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-page .cp-hero {
  text-align: center;
  margin-bottom: 60px;
}
.contact-page .cp-hero h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.contact-page .cp-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.contact-page .cp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact-page .cp-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-page .cp-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-page .cp-card {
  background: var(--bg-card-dark, #141518);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px;
  transition: border-color 0.2s;
}
.contact-page .cp-card:hover {
  border-color: rgba(249,1,2,0.3);
}
.contact-page .cp-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,1,2,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.contact-page .cp-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f90102;
  margin: 0 0 4px;
}
.contact-page .cp-card .cp-val {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 2px;
}
.contact-page .cp-card .cp-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.contact-page .cp-social-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.contact-page .cp-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-page .cp-social {
  width: 44px;
  height: 44px;
  background: var(--bg-card-dark, #141518);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-page .cp-social:hover {
  background: #f90102;
  border-color: #f90102;
  transform: translateY(-2px);
}
.contact-page .cp-form-wrap {
  background: var(--bg-card-dark, #141518);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.contact-page .cp-form-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249,1,2,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-page .cp-form-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.2;
}
.contact-page .cp-form-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 24px;
  line-height: 1.5;
}
.contact-page .cp-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.contact-page .cp-field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}
.contact-page .cp-field input,
.contact-page .cp-field textarea {
  background: var(--bg-main-dark, #0a0b0d);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-main-dark, #fff);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.contact-page .cp-field input:focus,
.contact-page .cp-field textarea:focus {
  border-color: #f90102;
}
.contact-page .cp-field textarea {
  resize: vertical;
}
.contact-page .cp-submit {
  width: 100%;
  padding: 16px;
  background: #f90102;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
  margin-top: 4px;
}
.contact-page .cp-submit:hover {
  background: #000;
}
.contact-page .cp-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-page .cp-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
}
.contact-page .cp-whatsapp-btn:hover {
  background: #1da851;
}
@media (max-width: 767px) {
  .contact-page { padding: 60px 0 20px; }
  .contact-page .cp-form-wrap { padding: 24px 20px; border-radius: 24px; }
  .contact-page .cp-hero h1 { font-size: 24px; }
}

[dir="rtl"] .contact-page .cp-card { text-align: right; }
[dir="rtl"] .contact-page .cp-field label { text-align: right; }
[dir="rtl"] .contact-page .cp-field input { text-align: right; }

[data-theme="light"] .contact-page {
  background: #f4f5f7;
  color: #111;
}
[data-theme="light"] .contact-page .cp-hero p,
[data-theme="light"] .contact-page .cp-card .cp-sub {
  color: rgba(17,17,17,0.5);
}
[data-theme="light"] .contact-page .cp-card {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .contact-page .cp-card:hover {
  border-color: rgba(249,1,2,0.4);
}
[data-theme="light"] .contact-page .cp-form-wrap {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .contact-page .cp-field label {
  color: rgba(17,17,17,0.5);
}
[data-theme="light"] .contact-page .cp-field input,
[data-theme="light"] .contact-page .cp-field textarea {
  background: #f4f5f7;
  border-color: rgba(0,0,0,0.06);
  color: #111;
}
[data-theme="light"] .contact-page .cp-field input:focus,
[data-theme="light"] .contact-page .cp-field textarea:focus {
  border-color: #f90102;
}
[data-theme="light"] .contact-page .cp-social-label {
  color: rgba(17,17,17,0.3);
}
[data-theme="light"] .contact-page .cp-social {
  background: #f4f5f7;
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .contact-page .cp-social:hover {
  background: #f90102;
  border-color: #f90102;
}
[data-theme="light"] .contact-page .cp-form-desc {
  color: rgba(17,17,17,0.4);
}
[data-theme="light"] .contact-page .cp-submit:hover {
  background: #c00101;
}
