﻿:root {
    --primary: #d64045;
    --primary-dark: #bf2f3a;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-light: #8b8b9f;
    --border-color: #e5e7eb;
    --radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-page-v2 {
    background: #f8f9fa;
    padding: 24px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.cp-two-col {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 42px;
}

.cp-col-left {
  flex: 0 0 60%;
}

.cp-col-right {
  flex: 0 0 calc(40% - 32px);
}

.cp-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

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

.cp-form-group {
  margin-bottom: 0;
}

.cp-form-group-full {
  margin-bottom: 18px;
}

.cp-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.cp-form-group input,
.cp-form-group textarea,
.cp-form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: #fff;
  color: #1a1a2e;
}

.cp-form-group input:focus,
.cp-form-group textarea:focus,
.cp-form-group select:focus {
  outline: none;
  border-color: #d64045;
}

.cp-form-group input.is-invalid,
.cp-form-group textarea.is-invalid,
.cp-form-group select.is-invalid {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.field-error {
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: 6px;
  display: block;
}

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

.cp-btn-submit {
  padding: 14px 32px;
  background: #d64045;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.cp-btn-submit:hover {
  background: #bf2f3a;
}

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

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

.cp-info-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cp-info-card i {
  color: #d64045;
  font-size: 1.25rem;
  margin-top: 2px;
}

.cp-info-card-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #1a1a2e;
}

.cp-info-card-content p,
.cp-info-card-content a {
  font-size: 0.875rem;
  color: #4a4a68;
  line-height: 1.55;
  margin: 0;
  text-decoration: none;
}

.cp-info-card-content a:hover {
  color: #d64045;
}

.cp-info-muted {
  margin-top: 5px !important;
  font-size: 0.8125rem !important;
  color: #8b8b9f !important;
}

.cp-social-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.cp-social-row a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a4a68;
  text-decoration: none;
  background: #fff;
}

.cp-social-row a:hover {
  border-color: #d64045;
  color: #d64045;
}

.cp-map-box,
.cp-map-placeholder {
  border-radius: 12px;
  height: 320px;
  margin-bottom: 44px;
}

.cp-map-box {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.cp-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.cp-map-placeholder {
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #8b8b9f;
}

.cp-map-placeholder i {
  font-size: 3rem;
  opacity: 0.5;
}

.cp-faq-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 24px;
  text-align: center;
  color: #1a1a2e;
}

.cp-faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.cp-accordion-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.cp-accordion-header {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a2e;
}

.cp-accordion-header:hover {
  color: #d64045;
}

.cp-accordion-header i {
  color: #8b8b9f;
  transition: transform 0.2s;
}

.cp-accordion-item.open .cp-accordion-header i {
  transform: rotate(180deg);
  color: #d64045;
}

.cp-accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}

.cp-accordion-item.open .cp-accordion-body {
  max-height: 520px;
}

.cp-accordion-body-inner {
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: #4a4a68;
  line-height: 1.6;
}

.cp-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  max-width: 360px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  animation: cpSlideIn 0.3s ease;
}

.cp-toast-success {
  background: #22c55e;
}

.cp-toast-warning {
  background: #f59e0b;
}

@keyframes cpSlideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .cp-two-col {
    flex-direction: column;
  }

  .cp-col-left,
  .cp-col-right {
    flex: 1 1 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
.cp-form-row {
    grid-template-columns: 1fr;
  }

  .cp-form-card {
    padding: 24px;
  }
}
