/* Sirius Contact — frontend styles
 * Design tokens: navy #1b2e4a, gold #d0a249, card bg #f2f3f5
 */

.sct-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    color: #333;
    font-family: inherit;
}

/* ───────── Grid ───────── */
.sct-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .sct-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ───────── Info cards ───────── */
.sct-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sct-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 26px;
    background: #eef0f3;
    border-radius: 12px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sct-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 46, 74, 0.08);
}

.sct-card-icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b2e4a;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.sct-card-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.sct-card-body {
    flex: 1;
    min-width: 0;
}

.sct-card-title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: #1b2e4a;
    font-weight: 700;
}

.sct-card-body p {
    margin: 4px 0;
    line-height: 1.55;
    color: #4a5568;
    word-wrap: break-word;
}

.sct-card-strong {
    color: #1b2e4a !important;
    font-weight: 600;
}

.sct-card-body a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: border-color 0.15s ease;
}

.sct-card-body a:hover {
    border-bottom-color: #d0a249;
}

/* ───────── Form ───────── */
.sct-form-heading {
    margin: 0 0 28px;
    font-size: 2rem;
    color: #1b2e4a;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.sct-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sct-row {
    display: grid;
    gap: 20px;
}

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

@media (max-width: 540px) {
    .sct-row-2 {
        grid-template-columns: 1fr;
    }
}

.sct-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sct-field label {
    color: #1b2e4a;
    font-weight: 500;
    font-size: 0.95rem;
}

.sct-required {
    color: #d93025;
    margin-left: 2px;
}

.sct-field input[type="text"],
.sct-field input[type="email"],
.sct-field input[type="tel"],
.sct-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dde1e6;
    border-radius: 6px;
    background: #fff;
    font-size: 0.98rem;
    font-family: inherit;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sct-field input::placeholder,
.sct-field textarea::placeholder {
    color: #a0a8b1;
}

.sct-field input:focus,
.sct-field textarea:focus {
    outline: none;
    border-color: #d0a249;
    box-shadow: 0 0 0 3px rgba(208, 162, 73, 0.15);
}

.sct-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.sct-captcha input[type="text"] {
    max-width: 140px;
}

/* Honeypot — truly off-screen so it's never announced or tabbed to */
.sct-honeypot {
    position: absolute;
    left: -99999px;
    top: -99999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    visibility: hidden;
}

/* Submit */
.sct-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.sct-submit-btn {
    display: inline-block;
    padding: 13px 42px;
    background: #1b2e4a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease;
}

.sct-submit-btn:hover {
    background: #0b1a2e;
}

.sct-submit-btn:active {
    transform: scale(0.98);
}

.sct-submit-btn:disabled {
    background: #9aa5b3;
    cursor: not-allowed;
    transform: none;
}

/* Status messages */
.sct-status {
    margin-top: 4px;
    padding: 0;
    font-size: 0.95rem;
    min-height: 1.4em;
    text-align: right;
    transition: color 0.2s ease;
}

.sct-status--success {
    color: #2e8b57;
    padding: 12px 16px;
    background: #e8f5ed;
    border-radius: 6px;
    text-align: left;
}

.sct-status--error {
    color: #b02020;
    padding: 12px 16px;
    background: #fbecec;
    border-radius: 6px;
    text-align: left;
}
