.framer-agency-form-container {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    max-width: 450px;
    margin: 0 auto;
}

.framer-icon {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.framer-icon::before {
    content: "💬";
    font-size: 18px;
}

.framer-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
    color: inherit;
}

.framer-subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 32px;
    line-height: 1.5;
}

.framer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.framer-form-group {
    margin-bottom: 24px;
}

.framer-form-group.full-width {
    grid-column: 1 / -1;
}

.framer-form-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 400;
}

.framer-form-group input[type="text"],
.framer-form-group input[type="email"],
.framer-form-group input[type="number"],
.framer-form-group select {
    width: 100%;
    padding: 12px 14px;
    background-color: transparent;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.framer-form-group input[type="text"]:focus,
.framer-form-group input[type="email"]:focus,
.framer-form-group input[type="number"]:focus,
.framer-form-group select:focus {
    outline: none;
    border-color: #0099ff;
}

.framer-form-group input::placeholder {
    color: #555;
}

.framer-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.framer-label-hint {
    font-size: 12px;
    color: #666;
    margin-left: 4px;
}

.framer-error-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff5555;
    font-size: 14px;
    display: none;
}

.framer-input-wrapper {
    position: relative;
}

.framer-input-wrapper input.error {
    border-color: #ff5555 !important;
}

.framer-input-wrapper input.error ~ .framer-error-icon {
    display: block;
}

.framer-section-title {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    margin-top: 8px;
    display: block;
}

.framer-help-text {
    font-size: 12px;
    color: #666;
    margin-top: 12px;
}

.framer-checkbox-group {
    margin-top: 24px;
}

.framer-checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.framer-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    accent-color: #0099ff;
    cursor: pointer;
    flex-shrink: 0;
}

.framer-checkbox-label {
    font-size: 14px;
    color: #bbb;
    line-height: 1.5;
    cursor: pointer;
}

.framer-checkbox-label a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.framer-checkbox-label a:hover {
    text-decoration: underline;
}

.framer-submit-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: transform 0.2s, opacity 0.2s;
}

.framer-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.framer-submit-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 500px) {
    .framer-form-row {
        grid-template-columns: 1fr;
    }
}

/* Elementor Editor Fixes */
.elementor-editor-active .framer-agency-form-container {
    pointer-events: auto;
}

/* Dark background support */
.framer-agency-form-container * {
    box-sizing: border-box;
}