.ilcscf-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    padding: 48px;
    max-width: 620px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.ilcscf-eyebrow {
    color: #14b8a6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ilcscf-heading {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.ilcscf-subheading {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.ilcscf-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 28px 0;
}

.ilcscf-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ilcscf-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ilcscf-field {
    flex: 1 1 0;
    min-width: 200px;
}

.ilcscf-field-full {
    flex: 1 1 100%;
}

.ilcscf-form input[type="text"],
.ilcscf-form input[type="email"],
.ilcscf-form input[type="tel"],
.ilcscf-form select,
.ilcscf-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: #f3f4f6;
    border: 1px solid #f3f4f6;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: #111827;
    font-family: inherit;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.ilcscf-form input::placeholder,
.ilcscf-form textarea::placeholder {
    color: #9ca3af;
}

.ilcscf-form input:focus,
.ilcscf-form select:focus,
.ilcscf-form textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #14b8a6;
}

.ilcscf-form textarea {
    resize: vertical;
    min-height: 110px;
}

.ilcscf-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
}

.ilcscf-phone-field {
    flex: 1 1 100%;
}

.ilcscf-phone-group {
    display: flex;
    gap: 10px;
}

.ilcscf-country-select {
    flex: 0 0 110px;
    width: 110px;
}

.ilcscf-phone-group input[type="tel"] {
    flex: 1 1 auto;
}

.ilcscf-response {
    font-size: 14px;
    padding: 0;
    min-height: 0;
    display: none;
}

.ilcscf-response.ilcscf-success {
    display: block;
    color: #047857;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 12px 14px;
    border-radius: 8px;
}

.ilcscf-response.ilcscf-error {
    display: block;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 12px 14px;
    border-radius: 8px;
}

.ilcscf-submit-btn {
    background: linear-gradient(180deg, #f6b93b 0%, #e8a628 100%);
    color: #1f2937;
    border: none;
    border-radius: 999px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.1s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 20px rgba(230, 168, 40, 0.35);
}

.ilcscf-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(230, 168, 40, 0.45);
}

.ilcscf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ilcscf-btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(31, 41, 55, 0.3);
    border-top-color: #1f2937;
    border-radius: 50%;
    display: inline-block;
    animation: ilcscf-spin 0.7s linear infinite;
}

@keyframes ilcscf-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 600px) {
    .ilcscf-card {
        padding: 28px 20px;
        border-radius: 18px;
    }
    .ilcscf-heading {
        font-size: 26px;
    }
    .ilcscf-field {
        min-width: 100%;
    }
}
