:root{
    --bg:#f8fafc;
    --surface:#ffffff;
    --muted:#64748b;
    --accent:#4f46e5;
    --accent-dark:#4338ca;
    --accent-600:#6366f1;
    --card:#ffffff;
    --glass:rgba(255,255,255,0.6);
    --max-width:1200px;
    --radius:14px;
    --container-padding:24px;
}

.contact-section{
    background:
    radial-gradient(600px 300px at 10% 20%, rgba(79,70,229,0.08), transparent),
    radial-gradient(500px 300px at 90% 80%, rgba(99,102,241,0.06), transparent),
    linear-gradient(to bottom, #f1f5f9, #f8fafc);
    padding:100px 72px;
    position:relative;
    overflow:hidden;
}

.contact-inner{
    max-width:1600px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 0.9fr;
    gap:60px;
    align-items:center;
}

.contact-form-wrapper{
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);
    border-radius:20px;
    padding:48px;
    color:#0f172a;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    border:1px solid rgba(0,0,0,0.04);
}

.contact-form-wrapper h3{
    font-size:32px;
    font-weight:800;
    margin-bottom:32px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-row{
    display:flex;
    gap:20px;
}

.form-row input,
.form-row textarea{
    width:100%;
    padding:14px 18px;
    border-radius:10px;
    border:1px solid rgba(0,0,0,0.08);
    font-size:16px;
    font-family:inherit;
    background:#ffffff;
    transition:0.2s ease;
}

.form-row textarea{
    resize:none;
}

.form-row input:focus,
.form-row textarea:focus{
    border-color:var(--accent);
    box-shadow:0 0 0 3px rgba(79,70,229,0.08);
    outline:none;
}

.contact-btn{
    align-self:flex-start;
    background:linear-gradient(135deg,#4f46e5,#4338ca);
    color:#ffffff;
    border:none;
    border-radius:10px;
    padding:14px 28px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    position:relative;
    padding-right:36px;
    transition:all 0.2s ease;
}

.contact-btn::after{
    content:"";
    position:absolute;
    top:50%;
    right:18px;
    width:8px;
    height:8px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:translateY(-50%) rotate(-45deg);
}

.contact-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(79,70,229,0.25);
}

.contact-info p{
    font-size:18px;
    line-height:1.6;
    color:var(--muted);
    margin-bottom:24px;
    max-width:50ch;
}
.privacy-row {
  margin-top: 12px;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.3;
}

.privacy-label input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: #4f46e5;
  flex-shrink: 0;
}

.privacy-label span {
  display: inline;
}

.privacy-label a {
  color: #4f46e5;
  text-decoration: underline;
}
.form-message{
  margin-top: 15px;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  display: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.form-message.hide {
  opacity: 0;
}
.form-message.success{
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-message.error{
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}