/* ================================================================
   contact-section.css — Contact Form + Info Panel
   Dark theme consistent cu footer-ul idava.global
   ================================================================ */

.ct-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
}

.ct-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(102, 126, 234, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ct-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ct-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: none;
    -webkit-text-fill-color: unset;
    margin: 0 0 3rem;
    letter-spacing: -0.02em;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

/* ── Form Card ─────────────────────────────────────────────── */
.ct-form-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 2.5rem;
}

.ct-form-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
}

.ct-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.ct-form-group {
    margin-bottom: 1.1rem;
}

.ct-form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.35rem;
}

.ct-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 0.88rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
    font-family: inherit;
    resize: vertical;
}

.ct-input:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.7);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.ct-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ct-textarea {
    min-height: 100px;
}

.ct-captcha-wrap {
    margin-bottom: 1.25rem;
}

.ct-btn-submit {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.35);
}

.ct-btn-submit:hover:not(:disabled) {
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.55);
    transform: translateY(-1px);
}

.ct-btn-submit:active { transform: scale(0.98); }
.ct-btn-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* Messages */
.ct-success-msg {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.ct-error-msg {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ── Info Panel ────────────────────────────────────────────── */
.ct-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.ct-info-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    color: #fff;
}

.ct-info-card h3,
.ct-info-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
}

.ct-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.ct-info-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ct-info-item:last-child {
    margin-bottom: 0;
}

.ct-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.ct-info-item p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.ct-info-item p strong {
    color: #fff;
}

.ct-info-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.ct-info-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Brand card logo text */
.ct-info-card .logo-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.ct-info-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #fff;
}

/* Address */
.footer-address-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.7;
    transition: color 0.2s;
}

.footer-address-link:hover {
    color: #fff;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-form-card {
        padding: 1.5rem;
    }

    .ct-info-card {
        padding: 1.25rem 1.5rem;
    }

    .ct-heading {
        font-size: 1.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
