/* Custom styles for ConvertKit form */
.formkit-form {
    width: 100%;
}

.formkit-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formkit-field {
    width: 100%;
}

.formkit-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.formkit-submit {
    width: 100%;
    padding: 0.75rem;
    background-color: #ea580c;
    color: white;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.formkit-submit:hover {
    background-color: #c2410c;
}

/* Video modal styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

/* Image slider animation */
.image-slider img {
    transition: opacity 0.3s ease-in-out;
}

/* Spinner animation for form submission */
.formkit-spinner {
    display: inline-flex;
    gap: 0.25rem;
}

.formkit-spinner > div {
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
    animation: spinner 1.2s infinite ease-in-out;
}

.formkit-spinner > div:nth-child(2) {
    animation-delay: 0.4s;
}

.formkit-spinner > div:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes spinner {
    0%, 100% { transform: scale(0.3); }
    50% { transform: scale(1); }
} 