.elementor-3733 .elementor-element.elementor-element-93913f8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-68c8ff6 *//* Legal Tech Consultation Form Styles */
/* Namespace all classes with ltc- prefix to avoid conflicts */

.ltc-form-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.ltc-form-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #002657 0%, #002657 100%);
    color: white;
    border-radius: 12px;
}

.ltc-form-header h1f {
    margin: 0 0 10px 0;
    font-size: 32px;
    font-weight: 700;
}

.ltc-form-header p {
    margin: 0;
    font-size: 18px;
    opacity: 0.95;
}

.ltc-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    padding: 40px;
}

.ltc-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.ltc-section:last-of-type {
    border-bottom: none;
}

.ltc-section h2 {
    color: #333;
    font-size: 24px;
    margin: 0 0 25px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.ltc-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #FA4616 0%, #fa4616 100%);
    margin-right: 12px;
}

.ltc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .ltc-form-row {
        grid-template-columns: 1fr;
    }
}

.ltc-form-group {
    margin-bottom: 20px;
}

.ltc-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ltc-form-group input[type="text"],
.ltc-form-group input[type="email"],
.ltc-form-group input[type="tel"],
.ltc-form-group select,
.ltc-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.ltc-form-group input:focus,
.ltc-form-group select:focus,
.ltc-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.ltc-form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.ltc-checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

@media (max-width: 640px) {
    .ltc-checkbox-group {
        grid-template-columns: 1fr;
    }
}

.ltc-checkbox-group label {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.ltc-checkbox-group label:hover {
    background: #e9ecef;
}

.ltc-checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.ltc-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

.ltc-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.ltc-meeting-info {
    margin-top: 15px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.ltc-meeting-info p {
    margin: 0;
    color: #856404;
}

.ltc-form-submit {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.ltc-submit-btn {
    background: linear-gradient(135deg, #002657 0%, #002657 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ltc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.ltc-submit-btn:active {
    transform: translateY(0);
}

.ltc-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ltc-privacy-note {
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.ltc-success-message {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.ltc-success-message h2 {
    color: #28a745;
    font-size: 36px;
    margin: 0 0 20px 0;
}

.ltc-success-message p {
    color: #666;
    font-size: 18px;
    margin: 15px 0;
}

.ltc-meeting-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.ltc-meeting-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Error states */
.ltc-form-group input.ltc-error,
.ltc-form-group select.ltc-error,
.ltc-form-group textarea.ltc-error {
    border-color: #dc3545;
    background: #fff5f5;
}

.ltc-form-group input.ltc-error:focus,
.ltc-form-group select.ltc-error:focus,
.ltc-form-group textarea.ltc-error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* Loading animation */
@keyframes ltc-pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.ltc-submit-btn:disabled {
    animation: ltc-pulse 1.5s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ltc-form-container {
        margin: 20px auto;
    }
    
    .ltc-form {
        padding: 25px;
    }
    
    .ltc-form-header {
        padding: 25px;
    }
    
    .ltc-form-header h1 {
        font-size: 26px;
    }
    
    .ltc-section h2 {
        font-size: 20px;
    }
    
    .ltc-submit-btn {
        width: 100%;
        padding: 14px 32px;
    }
}

/* Print styles */
@media print {
    .ltc-form-container {
        max-width: 100%;
    }
    
    .ltc-form-header {
        background: none;
        color: black;
        border: 2px solid #333;
    }
    
    .ltc-submit-btn {
        display: none;
    }
}/* End custom CSS */