/* The Icons Custom Contact Form — Forbes Connect inspired */

.ticcf-hero,
.ticcf-form-section {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", Arial, sans-serif;
    color: #111;
}
.ticcf-hero *,
.ticcf-form-section * {
    box-sizing: border-box;
}

/* ---------- Hero ---------- */
.ticcf-hero {
    background: #000;
    color: #fff;
    padding: 96px 24px 120px;
    text-align: center;
}
.ticcf-hero__inner {
    max-width: 900px;
    margin: 0 auto;
}
.ticcf-eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a96a;
    margin-bottom: 24px;
    font-weight: 600;
}
.ticcf-hero__title {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 24px;
    color: #fff;
}
.ticcf-hero__subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: #d9d9d9;
    max-width: 680px;
    margin: 0 auto 40px;
}
.ticcf-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #c8a96a;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.ticcf-cta:hover {
    background: #b89656;
    color: #000;
    transform: translateY(-2px);
}
.ticcf-cta__arrow {
    font-size: 18px;
    transition: transform 0.2s ease;
}
.ticcf-cta:hover .ticcf-cta__arrow {
    transform: translateY(3px);
}

/* ---------- Form section ---------- */
.ticcf-form-section {
    background: #f5f5f5;
    padding: 80px 24px 100px;
}
.ticcf-form-section__inner {
    max-width: 760px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.06);
}
.ticcf-form__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111;
}
.ticcf-form__subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 32px;
}

/* ---------- Form fields ---------- */
.ticcf-form {
    width: 100%;
}
.ticcf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}
.ticcf-field {
    display: flex;
    flex-direction: column;
}
.ticcf-field--full {
    grid-column: 1 / -1;
}
.ticcf-field label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.ticcf-req {
    color: #c0392b;
    margin-left: 2px;
}
.ticcf-field input,
.ticcf-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    color: #111;
    background: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 2px;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ticcf-field input:focus,
.ticcf-field textarea:focus {
    outline: none;
    border-color: #c8a96a;
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.18);
}
.ticcf-field textarea {
    resize: vertical;
    min-height: 120px;
}

.ticcf-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Actions ---------- */
.ticcf-actions {
    margin-top: 32px;
    text-align: right;
}
.ticcf-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s ease;
    font-family: inherit;
}
.ticcf-submit:hover {
    background: #c8a96a;
    color: #000;
}
.ticcf-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---------- Feedback ---------- */
.ticcf-feedback {
    margin-top: 20px;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
}
.ticcf-feedback.is-success {
    padding: 14px 18px;
    background: #e8f5ee;
    color: #1b5e20;
    border-left: 4px solid #2e7d32;
}
.ticcf-feedback.is-error {
    padding: 14px 18px;
    background: #fdecea;
    color: #8b1a14;
    border-left: 4px solid #c0392b;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .ticcf-hero { padding: 64px 20px 80px; }
    .ticcf-form-section { padding: 48px 16px 64px; }
    .ticcf-form-section__inner { padding: 28px 20px; }
    .ticcf-grid { grid-template-columns: 1fr; gap: 16px; }
    .ticcf-actions { text-align: stretch; }
    .ticcf-submit { width: 100%; }
}
